Microsoft
Software
Hardware
Network
Question : sql statement needed
need a sql statement to show that for each time a car is added to (product table)...inventory is reduced from (part table).
Table name: PRODUCT
PROD_CODE PROD_QOH
car 24
Table name: PART
PART_CODE PART_QOH
Frame 22
Moulding 23
Answer : sql statement needed
begin tran
insert into PRODUCT select ...
if @@ROWCOUNT > 0
UPDATE Part
SET qty = qty -1
WHERE PART_QOH = ???
IF @@Error <> 0
BEGIN
ROLLBACK TRAN
return
END
commit tran
Random Solutions
Call NetMessageBufferSend function from vb.net
Server 2003 RDP connection fails.
Late binding Outlook - type mismatch on object assignment
Set Font For Workbook or Worksheet Through VBA
How to make an automated roster using excel
Laptop Problems
what's the difference in these web services
Avoid LINK : warning LNK4089
Any alternative to running an FTP server?
find filenames in a text file