I need a SQL script for the following:
Select a specific account ID from tblAccounts that has a warranty expiration date of x.
SELECT tblAccounts
WHERE AccountID = '15391' (which is the account ID)
then
SELECT tblCustomerInventory
WHERE WarrantyExpiry = '05/30/12'
and then I need to replace all records with the above warranty expiration to have no value.
Thanks for the help!
Select a specific account ID from tblAccounts that has a warranty expiration date of x.
SELECT tblAccounts
WHERE AccountID = '15391' (which is the account ID)
then
SELECT tblCustomerInventory
WHERE WarrantyExpiry = '05/30/12'
and then I need to replace all records with the above warranty expiration to have no value.
Thanks for the help!