I would like to create a select query request with autonumber .. like ..
select * from tbl1
will give me everything from the table.
The result that I would like to get is ...
1 data 2 data 3 data
So how can I do to get this number .. ??
as..
select (for autonumber), * from tbl1
the data in my table will be repeated (no unique data)
william
source share