Hello,
Is it better to have 3 fields in django model, "first", "initial" and "last" or is it better to have "name" and put first name, last name and initial in the "name" field? If I put all three in one "name" field can I still search for last names?
I am asking because it will be easier to extract the "first, initial, last" from the scraped item.
Thanks