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

后端 未结 6 524
小鲜肉
小鲜肉 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:58

    • SQL a language for talking to the database. It lets you select data, mutate and create database objects (like tables, views, etc.), change database settings.
    • PL-SQL a procedural programming language (with embedded SQL)
    • T-SQL (procedural) extensions for SQL used by SQL Server

提交回复
热议问题