devxlogo

Using ANSI SQL Versus Transact SQL

Using ANSI SQL Versus Transact SQL

Question:

Is it advantageous to use ANSI SQL syntax or SQL Server syntax? For example, Inner Joins:

Select * from T1 inner Join T2 on t1.id=t2.idSelect * from T1,T2 where T1.id=T2.id

Answer:

From a performance perspective, it makes little difference. The SQL Server query optimizer will translate from your syntax into the most efficient execution plan. From a coding perspective, it may make a difference if you plan to move code across different types of databases. For example, if you want to write SQL to run in Microsoft Access, then run the same SQL in Microsoft SQL Server, it makes sense to use ANSI SQL rather than Transact SQL.

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist