I am using mysql db.
id | comment
--------+---------------
1121 | Accounting
1121 | Shipping
1121 | Receiving
1121 | Testing
1122 | Accounting
1122 | Receiving
I want to write such a query so that o/p will be like this-:
id | comment
--------+---------------
1121 | Accounting
1121 | Shipping
1121 | Receiving
1121 | Testing
So I want Accounting, Shiping, Receiving and testing comments.
Can anybody plz guide me??