Hallo,
I'm testing the Lansweeper Report Builder.
I made a report which is reporting the computers with purchase date = 2005
My question is: "How can I make a report with computers previously purchased than 2009"
This is what i got so far:
SELECT DISTINCT
tblComputers.Computername,
tblCompCustom.Custom1
FROM
tblComputers
INNER JOIN tblCompCustom ON (tblComputers.Computername = tblCompCustom.Computername)
WHERE
tblCompCustom.Custom1 = < 2009
The purchase year is on custom1.
But when I want to test it, it says : "Line 8: Incorrect syntax near '<' "
Hope you can help me guys.