views:

91

answers:

3

Hello Experts,

I'm just a beginner in development field.Looking for SQL Server books. Please tell me which is good book to study from. Any suggestion and pointer will be really helpful . thanks

+2  A: 

Look at the sql server books online, probably the best resource for anything SQL Server.

Oded
great resource, but hard for beginners...
Mitch Wheat
thanks Oded :) !!!
Monu
A: 

In addition to everything else, I would highly recommend the Database Design for Mere Mortals book by Michael Hernandez. It's very well written, touches on all the important points, works out the good and bad of database design, and is very useful overall.

It's not SQL Server specific, but all the concepts and ideas put forward here absolutely apply to anyone doing any serious work in SQL Server.

alt text

Once you've designed and set up your database, you might need to query it :-) and then I'd recommend the companion book SQL Queries for Mere Mortals which covers the querying techniques - what are the various JOIN types, what do they do, etc.

alt text

marc_s