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, 6099🔥, 0💬
Popular Posts:
How to set database to be READ_ONLY in SQL Server? Databases in SQL Server have two update options: ...
How to check if two JSON values have overlaps using the JSON_OVERLAPS() function? JSON_OVERLAPS(json...
How to download and install SQL Server 2005 Sample Scripts in SQL Server? If you want to learn from ...
How To Insert New Line Characters into Strings in SQL Server Transact-SQL? If you want to break a st...
How To Calculate Age in Days, Hours and Minutes in SQL Server Transact-SQL? On many Web sites, news ...