Possible Duplicate:
Combine rows in Access 2007
I have a table in MS Access Databse called as "emp_orders"
And the data appears as below,
emp_no order_no
1 123
1 156
1 264
2 234
2 354
2 268
2 182
now i need a select query which fetches data as specified below.
emp_no orders
1 123,156,264
2 234,354,268,182
Please help me out to sort this.