What's MySQL's SQL specific programming la

2020-04-02 18:15发布

You have T-SQL on SQL Server, PL/SQL on Oracle, what's the programming language on MySQL?

标签: mysql sql
4条回答
冷血范
2楼-- · 2020-04-02 18:25
甜甜的少女心
3楼-- · 2020-04-02 18:43

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)

查看更多
Lonely孤独者°
4楼-- · 2020-04-02 18:45

I believe that MySQL uses SQL (ANSI) as shown (or not in this case) here Transact-SQL

查看更多
可以哭但决不认输i
5楼-- · 2020-04-02 18:48

It uses SQL with a slight modification, you can refer it here [Official Documentation]

查看更多
登录 后发表回答