Sequential Numbers
Hi,
I'm trying to generate sequential numbers on an Access query, if I have 100 records I would like to add a column that have row 1 trough row 100:
record name
1 mike
2 joe
3 john
I can do it in SQL but I don't know how to do it in Access, I would like to convert this SQL to access:
DECLARE @Seq INT
SET @Seq = 0254
UPDATE TABLENAME
SET @Seq = Number = @Seq+1
Thanks
=======================
Strange and crazy, but everything is possible
__________________
=======================
Strange and crazy, but everything is possible
|