OT: SQL
807569Sep 27 2006 — edited Sep 28 2006I want to create a user table in a database that automatically assigns an ID number when a new user gets inserted.
something like:
create table user (primary key id int, varchar(30) username, varchar(30) passwd)
I used to know how to do this... is there anyone out there that can help me?