ramonzulueta
Technical User
Hi. Good day, can you please give me some direction on my SQL statement
If you have got an access database table with some data that look something like this:
id letter
1 a
2 a
2 b
3 c
4 a
4 b
4 c
How do you make that the recordset will look like this(what would be the sql statement for this please):
id letter
1 a
2 a,b
3 c
4 a,b,c
i would like to pull those values of database field 'letter' and write them using asp according to the field 'id'. thanks very much indeed.
If you have got an access database table with some data that look something like this:
id letter
1 a
2 a
2 b
3 c
4 a
4 b
4 c
How do you make that the recordset will look like this(what would be the sql statement for this please):
id letter
1 a
2 a,b
3 c
4 a,b,c
i would like to pull those values of database field 'letter' and write them using asp according to the field 'id'. thanks very much indeed.