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, 3845🔥, 0💬
Popular Posts:
Is SQL Server Transact-SQL case sensitive? No. Transact-SQL is not case sensitive. Like the standard...
How To Break Query Output into Pages in MySQL? If you have a query that returns hundreds of rows, an...
How To Get the Definition of a User Defined Function Back in SQL Server Transact-SQL? If you want ge...
How To List All Stored Procedures in the Current Database in SQL Server Transact-SQL? If you want to...
How To Round a Numeric Value To a Specific Precision in SQL Server Transact-SQL? Sometimes you need ...