Using SQL Server 2008 I have a query which resembles this:
SELECT *
FROM myTable mt
WHERE mt.ID !=0
What is the !=0
? It looks like it's the same as saying <> 0
.
I am unable to google this, is this in fact the same? A link to some documentation would be appreciated.