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.

Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular