[snip]
I have a table with no primary key. I would like to add a new auto-increment
column field to each record - that would be the easiest way to remedy this.
Eg. 1,2,3,4....tagged onto each record successively.
[/snip]

ALTER TABLE t ADD id INT UNSIGNED NOT NULL auto_increment PRIMARY KEY FIRST;

---
Tom Crimmins
Interface Specialist
Pottawattamie County, Iowa

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to