I'm a web developer looking to improve my MySQL skillset. Basic CRUD, joins, etc are all pretty par for the course; I'm looking to learn more about efficiency, avoiding bottlenecks, optimizing queries, and lots more awesome stuff that I don't know the words to explain.

link|improve this question

62% accept rate
feedback

4 Answers

up vote 6 down vote accepted

Pro MySQL

The first part of this book discusses topics related to design and development. Topics include transaction processing and indexing theory, benchmarking and profiling, and advanced coverage of storage engines and data types. The authors also delve deep into the MySQL source code and system architecture at a level you won't find anywhere else. Essential advanced SQL is also covered, with discussion of subqueries, derived tables, and joins. These concepts are demonstrated in a range of situation-specific examplesfrom dealing with hierarchical data to performing Geographic Information System (GIS) examples with just MySQL. This section also covers MySQL 5's new enterprise features like stored procedures, triggers, and views.

The latter part of this book devotes itself to administration topics. Topics include MySQL installation and upgrading, user administration, database backups, replication, and clustering. You'll also learn about the new data dictionary features available in MySQL 5.

alt text

link|improve this answer
Thanks! I'll hop over to Amazon now and check this out. – ironkeith Oct 21 '08 at 20:17
I have to second this recommendation of Pro Mysql (I even try to market this book on my blog). Apart from being extremely useful, I found this book very readable. Another new book that is getting reviews is the MySql Administrators Bible. – DBMarcos99 Aug 6 '09 at 14:49
+1 I consider this book the 'K&R for mysql.' Some topics discussed includes SQL syntax style and btree. – Yada Nov 26 '09 at 20:48
feedback

If you're looking for performance related things and getting down into the nitty gritty on the storage engines, optimizer, etc, High Performance MySQL 2nd Edition is the way to go.

http://oreilly.com/catalog/9780596101718/?CMP=AFC-ak_book&ATT=High+Performance+MySQL

link|improve this answer
feedback

Here are the SQL books on my bookshelf:

link|improve this answer
feedback

I really like MySQL Developer's Library (4th Edition).

Book Cover

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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