SQL Interview Questions
   1) What are the usages of SQL?       To execute queries against a database  To retrieve data from a database  To inserts records in a database  To update records in a database  To delete records from a database  To create new databases  To create new tables in a database  To create views in a database       2)  Does SQL support programming?       No, SQL doesn't have loop or Conditional statement. It is used like commanding language to access databases.       3) What are the subsets of SQL?       Data definition language (DDL)  - Data definition language(DDL) allows you to CREATE, ALTER and DELETE database objects such as schema, tables, view, sequence etc.        Data manipulation language (DML)  - Data manipulation language makes user able to access and manipulate data. It is used to perform following operations.  Insert data into database  Retrieve data from the database  Update data in the database  Delete data from the database    Data control language (DCL)  - Data control...