my intent is not to have Null value in primary key, the problem is the syntax to use in the .csv file. I have a .csv file that i need to insert into the table but the problem is that the primary key is set to auto incrememnt. for example
pk | col1 | col2
1 | a | a
2 | b | b
if i was to use this in my .csv file: "","c",c"" i get a NULL exception
I also cannot just leave out the column entirely: "c","c" or i will get a datatype exception cause it will try and copy it into the pk column,
any suggestions? is my only choice to manually insert the primary keys? that means i have to keep track of the current number everytime i want to import type a .csv file which will be imported and start from there
rrr
|