PDA

View Full Version : SQL Interview Questions


sony
24-01-2010, 03:54 PM
Guys, let's share some important SQL Interview Questions.

imtiaz
25-01-2010, 06:29 AM
"Where" is a kind of restriction statement. You use where clause to restrict all the data from DB. Where clause is using before result retrieving. But Having clause is using after retrieving the data. Having clause is a kind of filtering command.

imtiaz
25-01-2010, 06:32 AM
What is "normalization"? Why do you sometimes want to denormalize?

Normalizing data means eliminating redundant information from a table and organizing the data so that future changes to the table are easier. Denormalization means allowing redundancy in a table. The main benefit of denormalization is improved performance with simplified data retrieval and manipulation. This is done by reduction in the number of joins needed for data processing.