You have T-SQL on SQL Server, PL/SQL on Oracle, what's the programming language on MySQL?
相关问题
- SQL join to get the cartesian product of 2 columns
- sql execution latency when assign to a variable
- Difference between Types.INTEGER and Types.NULL in
- php PDO::FETCH_ASSOC doesnt detect select after ba
- sqlyog export query result as csv
SQL/PSM
Thank you guys, you pointed me in the right direction, as MYSQL's page says:
"Our aim is to support the full ANSI/ISO SQL standard, but without making concessions to speed and quality of the code."
so it seems like the base language is SQL ANSI but they have some modifications as seen here ans here (thanks to @Kugathasan Abimaran)
You can even run in ANSI-only mode.
However, no name is given to specific language. (thanks to @mmsmatt)
I believe that MySQL uses SQL (ANSI) as shown (or not in this case) here Transact-SQL
It uses SQL with a slight modification, you can refer it here [Official Documentation]