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, 5984🔥, 0💬
Popular Posts:
How to download Microsoft SQL Server 2005 Express Edition in SQL Server? Microsoft SQL Server 2005 E...
Where to find answers to frequently asked questions in general areas of Microsoft SQL Server Transac...
What is test testing area for? The testing area is provided to allow visitors to post testing commen...
Where to find reference information and tutorials on MySQL database functions? I want to know how to...
Can Date and Time Values Be Converted into Integers in SQL Server Transact-SQL? Can date and time va...