0
I have a large CVS file and I need to record it in my database the first line are the fields, which I have to validate if they are right and make some changes for example
first line NAME, DATE BIRTH, NOMEMAE second line GUILHERME FREIRE, 15/02/1987, MARIA CLARA third line PEDRO ANTUNES, 20/04/1990, PATRICIA SA
So far so good, but the first line can be different and I want to validate this it can be as FULL NAME, DTNASCIMENTO, MAE ... ETC
how do I do this with the best possible efficiency?
Another solution would be that instead of using the relational database, nosql dedicated exclusively to csv format
– user101090