Sql In 10 Minutes A Day Sams Teach Yourself

I have seen SQL that uses both != and <> for not equal. What is the preferred syntax and why? I like !=, because <> reminds me of Visual Basic.

Should I use != or <> for not equal in T-SQL? - Stack Overflow

In SQL, anything you evaluate / compute with NULL results into UNKNOWN This is why SELECT * FROM MyTable WHERE MyColumn != NULL or SELECT * FROM MyTable WHERE MyColumn <> NULL gives you 0 results.

Sql In 10 Minutes A Day Sams Teach Yourself 3

sql - Not equal <> != operator on NULL - Stack Overflow

Sql In 10 Minutes A Day Sams Teach Yourself 4

represents string concatenation. Unfortunately, string concatenation is not completely portable across all sql dialects: ansi sql: || (infix operator) mysql: concat ( vararg function ). caution: || means 'logical or' (It's configurable, however; thanks to @hvd for pointing that out) oracle: || (infix operator), concat ( caution: function of arity 2 only ! ) postgres: || (infix operator) sql ...

Sql In 10 Minutes A Day Sams Teach Yourself 5

The @CustID means it's a parameter that you will supply a value for later in your code. This is the best way of protecting against SQL injection. Create your query using parameters, rather than concatenating strings and variables. The database engine puts the parameter value into where the placeholder is, and there is zero chance for SQL injection.

Sql In 10 Minutes A Day Sams Teach Yourself 6

The other answers are correct if you're dealing with SQL Server, and it's clear that you are. But since the question title just says SQL, I should mention that there are some forms of SQL such as MySQL where a pound sign is used as an alternative commenting symbol.

What does the SQL # symbol mean and how is it used?

Sql In 10 Minutes A Day Sams Teach Yourself 8