Anyone know why I can’t do a `WHERE user = <num...
# suiteql
j
Anyone know why I can’t do a
WHERE user = <number>
in a
SELECT * FROM loginaudit
?
t
That is odd, and I'm seeing that, too. What you can do - and I have no idea why this works - is something like this...
Copy code
SELECT TOP 10
	LoginAudit.*
FROM
	LoginAudit
	INNER JOIN Employee ON
		( Employee.ID = LoginAudit.User )
WHERE
	Employee.ID = <number>
j
gak
I’ll just get my desired user’s email addresses first and filter on that instead