I have a MySQL table called mst_order_details
and it has column (order no) and it can be same order no it more time.
Each order number have related technique column I want to concat technique column according to order no
mst_order_details table :
order no Technique
-------------------------
1 heat_seal
1 laser_cut
1 oil_filter
2 diamond cut
2 diamond cut
Output should be like this :
order no Technique
---------------------------------------------
1 heat_seal/laser_cut/ oil_filter
2 diamond cut