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
SBS2008 Standard - RDS - Virtual Desktops
Refresh data in a Bound datagridview VB.NET
Databinding methods such as Eval(), XPath(), and Bind() can only be used in the context of a databound control.
time as number?
How can I write a vbscript to uninstall programs remotely, thoroughly?
Windows 7 in a workgroup with network shares
vb.net - load data into listview
I can't get the Ajax script manager to be recognized by visual studio 2005??
Files count via batch file
Conditional Formatting in a ListBox (Access :: VBA)