TSQL - Transact SQL
PL / SQL - SQL for Oracle SQL Server
Access SQL is a hacked version of SQL
TSQL and PL / SQL are based on the ISO / ANSI SQL standards. It depends on the version of SQL Server (TSQL) or Oracle (PL / SQL) for the version of ISO / ANSI that they use. See http://en.wikipedia.org/wiki/SQL for more details.
TSQL and PL / SQL have additional functionality beyond the ISO / ANSI SQL contributed by the companies that created them. In general, the ISO / ANSI SQL standard is specifically devoted to how you can query the database and what structures you can have in the database (for example, tables, triggers, stored procedures, etc.). TSQL and PL / SQL are true programming languages ββbecause they can do loops and other things that programming languages ββcan do. Simply put, TSQL and PL / SQL are complete, and ISO standards are not.
I am not sure about Access. I think this is just a hacked version of SQL.
source share