KL SQL Interview Questions
KL SQL Interview Questions
2. What is RDBMS?
3. What is SQL?
4. What are tables and Fields?
5. What is a primary key?
6. What is a unique key?
7. What is a foreign key?
8. What is a join?
9. What are the types of join and explain each?
10. What is normalization?
11. What are all the different normalizations?
12.What is subquery?
13. What are the types of subquery?
14. Difference between WHERE and HAVING clause
15. Difference between SRF and MRF
16. What is the difference between DELETE and TRUNCATE
commands?
17. What is a constraint ?
18. What is Self-Join?
19. What is Cross-Join?
20. What is an ALIAS command?
21. What is the difference between TRUNCATE and DROP
statements?
22. What are aggregate functions?
23 . How to select unique records from a table?
Select unique records from a table by using DISTINCT keyword.
Select DISTINCT StudentID, StudentName
from Student ;
KRISHNA