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, 5870🔥, 0💬
Popular Posts:
What Happens to an Arithmetic Operation with Two Different Data Types in SQL Server Transact-SQL? Wh...
How To Convert Characters to Numbers in Oracle? You can convert characters to numbers by using the T...
How To Create a Table Index in Oracle? If you have a table with a lots of rows, and you know that on...
How To Concatenate Two Character Strings Together in SQL Server Transact-SQL? Concatenating two char...
How To Convert Numeric Expression Data Types using the CAST() Function in SQL Server Transact-SQL? I...