Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Differences between MySQL and Oracle DB [closed]

What are the differences - features and performance - between MySQL and Oracle 11g? I would like to be able to make and educated choice between the two given a situation.

Note: Links to test will obviously help.

like image 973
Jungle Hunter Avatar asked Feb 10 '11 06:02

Jungle Hunter


2 Answers

Things that MySQL is still lacking (that Oracle has)

  • deferrable constraints
  • check constraints
  • recursive queries
  • table functions
  • common table expressions
  • windowing functions
  • function based index
  • partial index
  • No MINUS (or INTERSECT) operator
  • very simple query optimizer when it comes to sub-selects
  • A lot of non-standard Syntax (|| is a logical or!)
  • no flashback
like image 80
a_horse_with_no_name Avatar answered Sep 28 '22 18:09

a_horse_with_no_name


Very popular answer for StackOverflow:

Look at Wikipedia! :)

Another useful place to look for SQL features comparation:

Comparison of different SQL implementations by Troels.

Hope, you can find answers here ...

like image 27
ThinkJet Avatar answered Sep 28 '22 16:09

ThinkJet