use master
go
create table costamount(costkey int ,invoiceID int ,InvoiceAmount int)
insert into costamount
select 2,33,1000 UNION
select 2,44, 200 UNION
select 2,44, 300
select * from costamount
i have
table called costamount i have data
like
costkey invoiceid invoiceamount
2 &nbs ...
Go to the complete details ...