vote up 5 vote down star
1

I don't mean "Basic SQL", but strongly the specs and the difference between the specs and the implementations between great databases (like SQL Server, Oracle, etc).

flag

77% accept rate

3 Answers

vote up 4 vote down check


SQL In a Nutshell by O'Reilly and Associates. It covers all 5 major SQL Dialects, the differences between them, and does that for each function/feature listed. (ANSI SQL99, Oracle, MySql, Postgres, and SQL Server).

link|flag
Love that book! Really helpful if you are moving from Oracle to SQL Server or vice versa. I only wish it had Access Jet SQL as well as many people have trouble with the changes to syntax when they move away from Access. – HLGEM Jan 21 at 19:18
This is the de facto answer. – Robert S. Jan 21 at 19:24
This book has saved my rear-end more times than I care to count. Well worth the cost. – George Stocker Jan 21 at 19:29
It's a great book, but it is only a 'nutshell' book and leaves a lot of the standard uncovered. Any suggestions for more detail, short of buying the standard itself (yikes!)? – bobince Jan 21 at 21:38
@bobince: Have you read this book? It pours through every conceivable function and compares it across all 5 standards. There's very little it leaves out. – George Stocker Jan 21 at 21:47
vote up 2 vote down

The number one way of learning the differences is to work in the various databases.

SQL Server, Oracle, and MySql all offer free (express) editions. Also, if you want to step up a bit you can get the developer version of SQL Server for about $50.

Oracle: http://www.oracle.com/technology/products/database/xe/index.html

SQL Server http://www.microsoft.com/express/sql/default.aspx

MySQL http://dev.mysql.com/downloads/

Simple things to do:

  • create a database
  • create a table
  • do simple insert/update/delete (CRUD) operations
  • do inner / outer joins.
link|flag
vote up 1 vote down

http://sqlzoo.net/

PostgreSQL the world's more advanced opensource and more ANSI SQL-compliant database

Various RDBMS ANSI SQL-conformance: http://troels.arvin.dk/db/rdbms/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.