B
Boon
Hello,
I have one table with one column that lists all customers' name.
e.g.
NAME
Brian
Dan
John
..
..
..
I want to create a select query that shows two columns. First column is
dummy ID and second column is name.
e.g.
ID NAME
Cus001 Brian
Cus002 Dan
Cus003 John
..
..
..
How can I do this? I am thinking that in column ID I can use something like
thanks
Boon
I have one table with one column that lists all customers' name.
e.g.
NAME
Brian
Dan
John
..
..
..
I want to create a select query that shows two columns. First column is
dummy ID and second column is name.
e.g.
ID NAME
Cus001 Brian
Cus002 Dan
Cus003 John
..
..
..
How can I do this? I am thinking that in column ID I can use something like
ID:"Cus" & getrow() ... But it doesn't work.
thanks
Boon