I'm new to SQL, but managed to import my CSV data into an Apache Derby DB using ij.
My table contains no primary key, and no existing field is suitable, so I'd like to create a new field, generate unique numbers to fill it, and set it as the primary key. How can I do this?
For example, I tried
ALTER TABLE myTable ADD pk AUTO_INCREMENT PRIMARY KEY
but I got a syntax error on AUTO_INCREMENT.
Also, when I google for this sort of thing, I find lots of SQL tips, but few of them seem to apply to Derby. Is there a particular variant of SQL that I should be searching for?