‎12-19-2011 03:36 PM
‎01-03-2012 11:40 AM
‎01-03-2012 11:16 AM
‎12-20-2011 03:58 PM
UPDATE tblCompCustom
SET BarCode= '3001'
FROM tblCompCustom INNER JOIN
tblComputers ON tblCompCustom.Computername = tblComputers.Computername
WHERE (tblComputers.Computer LIKE 'R21-STN01')
UPDATE tblCompCustom
SET BarCode= '3002'
FROM tblCompCustom INNER JOIN
tblComputers ON tblCompCustom.Computername = tblComputers.Computername
WHERE (tblComputers.Computer LIKE 'R21-STN02')
‎12-20-2011 02:44 PM
‎12-20-2011 02:40 PM
INSERT INTO tblCompCustom (Computername)
SELECT Computername
FROM tblComputers
WHERE (Computername NOT IN (SELECT Computername FROM tblCompCustom AS tblCompCustom_1))
GO
UPDATE tblCompCustom
SET Custom1 = '£259.00'
FROM tblCompCustom INNER JOIN
tblComputers ON tblCompCustom.Computername = tblComputers.Computername
WHERE (tblComputers.Computer LIKE 'R21-STN%')
‎12-20-2011 02:09 PM
UPDATE tblCompCustom
SET Custom1 = '£259.00'
FROM tblCompCustom INNER JOIN
tblComputers ON tblCompCustom.Computername = tblComputers.Computername
WHERE (tblComputers.Computer LIKE 'R21-STN%')
‎12-20-2011 10:50 AM
UPDATE tblCompCustom
SET PurchaseDate = 'YourInfo'
FROM tblCompCustom INNER JOIN
tblComputers ON tblCompCustom.Computername = tblComputers.Computername
WHERE (tblComputers.Computer LIKE 'English%')
UPDATE tblCompCustom
SET WarrantyDate = 'YourInfo'
FROM tblCompCustom INNER JOIN
tblComputers ON tblCompCustom.Computername = tblComputers.Computername
WHERE (tblComputers.Computer LIKE 'English%')
‎12-20-2011 10:45 AM
‎12-19-2011 06:22 PM
UPDATE tblCompCustom
SET Custom1 = 'YourInfo'
FROM tblCompCustom INNER JOIN
tblComputers ON tblCompCustom.Computername = tblComputers.Computername
WHERE (tblComputers.Computer LIKE 'English%')
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now