1

I've searched Google, but can't find an answer to this: what flavor SQL does MySQL use, if any?

Danny Beckett
  • 20,529
  • 24
  • 107
  • 134
  • 1
    mysql uses it's own dialect called mysql – Preet Sangha Jun 27 '13 at 06:21
  • 1
    The statement "Oracle = PL/SQL" is wrong. PL/SQL is **only** for stored procedures in Oracle. Everything else is "just" SQL. –  Jun 27 '13 at 06:44
  • 2
    How is that possible? Let's take the MINUS operator, that doesn't have to be used in stored procedures. I can use that in ad-hoc query. The problem I have with your statement is saying "just sql" implies it is platform independent. – uh_big_mike_boi Jun 14 '15 at 02:12

2 Answers2

5

MySQL uses its own flavor called MySQL itself.

kevinm
  • 475
  • 2
  • 7
4

MySQL Differences from Standard SQL

http://dev.mysql.com/doc/refman/5.0/en/differences-from-ansi.html

Matt MacLean
  • 19,410
  • 7
  • 50
  • 53