We're using postgreSQL as our database. Two of our data entry fields are (first,last)name and (last,first)name. Search options require us to have it like this or we would just do first and last seperately.
On to the problem, when the name is entered into the text field it is usually entered like thus (Firstname Lastname). When done like this, as people are used to doing, only the first name makes it into the database field, everything after the space is dropped. Is there anyway to make sure that both names get into the database? Instead of being chopped off at the space.
THANKS!