I have two different tables, with the name values being stored in different manners...
For example one field is:
inventorName
John C. Smith
While in the other table the fields are:
Inventorfirst | InventorLast
John C. | Smith
The question is would it make more sense for me to combine the seperate names rather than spending god knows how long parsing out the individual names. I understand the drawbacks when it comes to querying :
Find and inventor with the last name Thomas could include first names of thomas within the fields, and on top of that the queries would mostly be using like and name which I am not a fan of cause I want it to be accurate as possible.
I am fairly new to this and all of the name parsing articles I ahve read make it seem like a nightmare and could just use some honest opinions.