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
2017-06-16, 1553👍, 0💬
Popular Posts:
How To Use DATEADD() Function in SQL Server Transact-SQL? DATEADD() is a very useful function for ma...
How To Start Instance with a Minimal Initialization Parameter File in Oracle? The sample initializat...
How To Create a Test Table for Transaction Testing in Oracle? If you want to practice DML statements...
How To Verify Your PHP Installation in MySQL? PHP provides two execution interfaces: Command Line In...
How To Create a Test Table for Transaction Testing in Oracle? If you want to practice DML statements...