Is the syntax of Oracle10g and mysql are the same? For example the select query? Thanks, I'm using MySQL and want to try Oracle 10g for my java.
1 Answer 1
They're vastly different when it comes to other features, such as security, programming languages, data types, tools, end user support, requirements, etc.
However, they're both compliant with basic SQL92 (and perhaps other SQL standards), so one can do the same basic schema creation and data querying and manipulation. You should be able to do the basics from java applications without noticing where you're connected to (and this applies to several other databases).
-
In limiting yourself to the standard, you must forgo various extensions, some of which are significant performance improvements.Rick James– Rick James2016年04月14日 17:24:35 +00:00Commented Apr 14, 2016 at 17:24
CHECK
constraint" is enough. NoCTE
s or windowing (analytic) functions.... I could go on. MySQL is a lucky toy. PostgreSQL is a real industrial standard RDBMS. You are correct though - it's up to DBA/devs to choose.