3
votes
5answers
322 views
Injecting a user account into mySQL
Hi all,
Tackling a strange scenario here.
We use a proprietary workstation management application which uses mySQL to store its data. Within the application they provide number of …
1
vote
SqlServer create table with MySql like auto_increment primary key
As advised above, use an IDENTITY field.
CREATE TABLE foo
(
user_id int IDENTITY(1,1) NOT NULL,
name varchar(50)
)
…
