vote up 6 vote down star
2

I'm looking for a good and short book to learn SQL in general, and good modern SQL practices.

Any suggestions? Thanks!

flag

Interesting question. For some reason it seems like SQL hates me and I hate SQL. Probably is because it is a declarative language and I'm very used to imperative. I hope the links in this question helps me at least to ask questions more affectively ( I don't think I could ever like SQL :S ) – Oscar Reyes Dec 29 at 18:29

7 Answers

vote up 6 vote down check

For beginner\intermediate SQL programmer I would recommend these 2 books:

  • Learning SQL ISBN: 0596007272
  • SQL In A Nutshell, 2nd Edition ISBN: 0596004818

For advanced SQL techniques I would recommend books by Joe Celko

link|flag
Learning SQL: amazon.com/Learning-SQL-Alan-Beaulieu/dp/… – Matt Refghi Apr 23 at 14:06
SQL In A Nutshell, 2nd Edition: amazon.com/SQL-Nutshell-2nd-Kevin-Kline/dp/… – Matt Refghi Apr 23 at 14:07
vote up 3 vote down

Joe Celko's books are good - I loved "SQL for Smarties"

link|flag
vote up 2 vote down

For CRUD operations (create, retrieve, update and delete) a good place to start is w3schools. CRUD accounts for a good majority of the SQL that you might use (add in joins under retrieve and you have ~95%). IMHO there really is not that much in straight SQL that would fill out a book.

A better approach might be a database design book. Learn about what/how relations work and the SQL will follow. Make a simple application that uses it. It makes more sense to me this way.

All modern RDBMs support CRUD in mostly the same way and from there you can learn your platform dependent stuff.

link|flag
vote up 1 vote down

If Erland ever writes a book, you should own it.

http://www.sommarskog.se/

link|flag
vote up 1 vote down

This one's awesome so far, by Rudy Limeback:

http://www.amazon.com/Simply-SQL-Rudy-Limeback/dp/0980455251

link|flag
vote up 0 vote down

I've heard good things about "The Manga Guide To Databases", but I haven't read it myself. At least sounds more fun to read than the average book about RDBMS's http://www.amazon.com/dp/1593271905

link|flag

Your Answer

Get an OpenID
or

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