Collections:
Is SQL Server Transact-SQL Case Sensitive?
Is SQL Server Transact-SQL case sensitive?
✍: FYIcenter.com
No. Transact-SQL is not case sensitive. Like the standard SQL, you
can type in your Transact-SQL statement in upper case or lower case.
However, you should use upper case for all key words in Transact-SQL statements as a best practice.
The following examples are all valid Transact-SQL statements:
SELECT @@VERSION select @@version Select @@Version SelecT @@VersioN
⇒ What Is a Statement in SQL Server Transact-SQL
⇐ Versions of SQL Server Transact-SQL
2017-06-16, 5313🔥, 0💬
Popular Posts:
How To Download Oracle Database 10g XE in Oracle? If you want to download a copy of Oracle Database ...
What Are Date and Time Functions in MySQL? MySQL offers a number of functions for date and time valu...
Where to find answers to frequently asked questions on CREATE, ALTER and DROP Statements in MySQL? H...
How To Calculate DATETIME Value Differences Using the DATEDIFF() Function in SQL Server Transact-SQL...
How REAL and FLOAT Literal Values Are Rounded in SQL Server Transact-SQL? By definition, FLOAT(n) sh...