Hi, is it corrent to write
(<subquery here>) <op> <constant>?
I.e. WHERE (SELECT COUNT(*) FROM Employees) > 10 <- WRONG?
I have read this is wrong and only <constant> <op> (<subquery>) works
I.e. 10 < WHERE (SELECT COUNT(*) FROM Employees)
Is there a difference between MSSQL and MySQL related to this?