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, 5163🔥, 0💬
Popular Posts:
How To Generate CREATE VIEW Script on an Existing View in SQL Server? If you want to know how an exi...
What Is an Oracle Instance in Oracle? Every running Oracle database is associated with an Oracle ins...
What Happens If the UPDATE Subquery Returns Multiple Rows in SQL Server? If a subquery is used in a ...
What Are Bitwise Operations in SQL Server Transact-SQL? Bitwise operations are binary operations per...
How to put statements into a statement block in SQL Server Transact-SQL? You can put statements into...