Dear Experts I have table . we have got list of machine for fabric processing .for one lot of fabric only certain machines are used where as for other lot all the machines are used.Now my target is use to track where my lot is and under which machine it is there.
to Understand in a better way iam putting my query here
select RowNo,CustPONum,CustName,DeptName,MachineName,ReceivedQty,ReceivedDate
from DepartMent_Routing
where Lotnum = '50187' and ReceivedQty > 0
for this i got Output like this
RowNo | CustPONum | DeptName | MachineName | ReceivedQty | ReceivedDate |
3141 | 425912 | BLEACHING | SINGING & DESIZING / DESIZE WASH | 869.000 | 2015-03-20 |
3142 | 425912 | BLEACHING | SINGING & DESIZING / DESIZE WASH | 331.000 | 2015-03-20 |
3143 | 425912 | BLEACHING | CBR | 869.000 | 2015-03-19 |
3144 | 425912 | BLEACHING | CBR | 331.000 | 2015-03-19 |
3145 | 425912 | BLEACHING | MERCERIZE | 879.000 | 2015-03-19 |
3146 | 425912 | BLEACHING | MERCERIZE | 335.000 | 2015-03-19 |
3153 | 425912 | DYEING | DYG - WASHER | 900.000 | 2015-03-28 |
3155 | 425912 | FINISHING | FINISH | 900.000 | 2015-03-29 |
BUt i want output in a single line
3155 | 425912 | FINISHING | FINISH | 900.000 | 2015-03-29 |
Regards
Jenny