What is the difference between SQL, PL-SQL and T-SQL?

后端 未结 6 508
小鲜肉
小鲜肉 2020-11-29 14:43

What is the difference between SQL, PL-SQL and T-SQL?

Can anyone explain what the differences between these three are, and provide scenarios where each would be rele

6条回答
  •  眼角桃花
    2020-11-29 14:51

    Structured Query Language - SQL: is an ANSI-standard used by almost all SGBD's vendors around the world. Basically, SQL is a language used to define and manipulate data [DDL and DML].

    PL/SQL is a language created by Oracle universe. PL/SQL combine programming procedural instructions and allows the creation of programs that operates directly on database scenario.

    T-SQL is Microsoft product align SQL patterns, with some peculiarities. So, feel free to test your limits.

提交回复
热议问题