vote up 2 vote down star

As a programmer I would like to get a strong hold on writing queries. In my college years I've read a few sql books and rest I've just learned working as a programmer for last couple of years. But as those queries were work related...they weren't that 'hard' or complex.

what would you guys suggest ? Is there a good advanced sql book that would teach and then test the knowledge by giving some questions?

Thanks!

flag

Use LINQ to create your query, and backward engineer the SQL string value ;-) – Nick Bolton Mar 29 at 3:44

6 Answers

vote up 8 vote down check

IMHO SQL skill, more than any other programming skill, requires mentoring.

There are three primary reasons.

  1. It's quite possible (often easy) to write a SQL statement that gives you the right answer. So developers often end up telling themselves "Hey, it works, (and all in one statement,) I'm done." Usually not so, and the only efficient way to take the next step is to have your work reviewed and get suggestions (and reasons for the suggestions).

  2. Skills aren't nearly as transferrable from "regular" programming as you might expect. Principles like decomposition, subroutines, etc. are usually blind alleys.

  3. Real SQL skill requires just as much testing skill. You can only truly evaluate SQL execution by knowing your SQL query analysis tools inside out, and using them without fail on almost every query.

So the answer to your question is: get as much help as you can, early and often. And don't be reluctant to ask "Why".

link|flag
Yup, nice answer. But I would argue that code review, testing, analysis tools are important (and overlooked) for conventional application languages too. – Bill Karwin Mar 29 at 1:22
Agreed, no question. I think eschewing them gets you in deeper trouble faster with SQL, though, because it takes longer to notice that the wheels are falling off. – le dorfier Mar 29 at 1:29
good answer, except - what do you do if there's no one to mentor you? – Steven A. Lowe Mar 29 at 23:24
I think it's like learning to play golf. You can read some books and practice in the back yard, but bad patterns accumulate when there's no hard feedback. Still, you can practice, practice, practice until you start recognizing your antipatterns (and good patterns) in the literature. – le dorfier Mar 30 at 0:35
vote up 2 vote down

I have always felt that SQL was something you had to learn by doing. I found my self on a project that forced me to write SQL not stop for several weeks to analyze every aspect of a fairly large database. In many isntances I wrote many SQLs that all resulted in the same results but went about getting them in different ways. Using Sql Server Management Studio's execution path tool I was able to review the query options and improve each and finally pick the "best" for the situation. If you can find a reason or purpose to write a bunch of SQL I beleive that will be the best catalyst you can have for truely learning the art of milking data from the DB.

link|flag
vote up 1 vote down
  1. set theory
  2. database theory, esp. the rules of normalization
  3. learn how to read a query execution plan
link|flag
vote up 0 vote down

I find the easiest is wondering if you can find a better or easier way and the looking for that way (like on MySQL website) or asking questions (like on SO). These 2 ways have been how I have learnt the majority of SQL. But this was only after getting a base knowledge. I also found that the more complciated the database becomes, the more you learn, even if it's by trial and error.

link|flag
vote up 0 vote down

The MySQLGame could also be a fun little detour and/or test of your skills.

link|flag
vote up 0 vote down

I've found reading the Ask Tom site has helped me to understand what you can do with advanced SQL. It is Oracle specific, but bitingly sarcastic and horrific!

Ask Tom

Also, talk to your database administrators (if you have any) they have plenty of experience you can make use of.

link|flag

Your Answer

Get an OpenID
or

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