Quantcast
Channel: Transact-SQL forum
Viewing all articles
Browse latest Browse all 23857

INNER JOIN PROBLEM IN Microsoft SQL Server 2008 R2 Report Builder 3.0

$
0
0
SELECT

  ,maximo_tbl_matrectrans.ponum

  ,maximo_tbl_po.description AS [maximo_tbl_po description]

  ,maximo_tbl_matrectrans.polinenum

  ,maximo_tbl_matrectrans.itemnum

  ,maximo_tbl_item.description AS [maximo_tbl_item description]

FROM

  maximo_tbl_matrectran

 INNER JOIN maximo_tbl_po

    ON maximo_tbl_matrectrans.ponum = maximo_tbl_po.ponum

  INNER JOIN maximo_tbl_item

    ON maximo_tbl_matrectrans.itemnum = maximo_tbl_item.itemnum

can you advise below picture in itemnum in show one value more time

ponum	   polinenum	maximo_tbl_a_po_description	itemnum	   maximo_tbl_a_item_description
D33-1021425	5	ASL REORDER  HAZMAT	     91G8110000071	DRUM, PLASTIC
D33-1021425	5	ASL REORDER  HAZMAT	     91G8110000071	DRUM, PLASTIC
D33-1020817	2	ASL REPLENISHMENT, D	     91G6685000371	THERMOSTAT
D33-1020817	2	ASL REPLENISHMENT, D	     91G6685000371	THERMOSTAT
D33-1020817	2	ASL REPLENISHMENT, D	     91G6685000371	THERMOSTAT
D33-1021365	2	ASL - D33DFAC STOCK	     91G3920000081	CART, BIG WHEEL
D33-1021365	2	ASL - D33DFAC STOCK	     91G3920000081	CART, BIG WHEEL
D33-1021425	5	ASL REORDER  HAZMAT	     91G8110000071	DRUM, PLASTIC
D33-1020817	1	ASL REPLENISHMENT, D	     91G5330002011	SEAL, THERMOSTAT
D33-1022346	2	ASL STOCK REORDER  E	     92G6145000998	CABLE, POWER,
D33-1022346	2	ASL STOCK REORDER  E	     92G6145000998	CABLE, POWER,
D33-1020817	1	ASL REPLENISHMENT, D	     91G5330002011	SEAL, THERMOSTAT
D33-1020817	1	ASL REPLENISHMENT, D	     91G5330002011	SEAL, THERMOSTAT
D33-1022346	2	ASL STOCK REORDER  E	     92G6145000998	CABLE, POWER,

but original we need..
ponum 	     polinenum 	maximo_tbl_a_po_description 	itemnum 	maximo_tbl_a_item_description
D33-1021425 	5 	ASL REORDER  HAZMAT 	      91G8110000071 	DRUM, PLASTIC
D33-1020817 	2 	ASL REPLENISHMENT, D 	      91G6685000371 	THERMOSTAT
D33-1021365 	2 	ASL - D33DFAC STOCK 	      91G3920000081 	CART, BIG WHEEL
D33-1020817 	1 	ASL REPLENISHMENT, D 	      91G5330002011 	SEAL, THERMOSTAT
D33-1022346 	2 	ASL STOCK REORDER  E 	      92G6145000998 	CABLE, POWER,



Viewing all articles
Browse latest Browse all 23857

Trending Articles