DB
Interview Questions
Q: | What is SQL? |
A: | SQL stands for 'Structured Query Language'. |
Q: | What is the INSERT statement? |
A: | The INSERT statement lets you insert information into a database. |
Q: | How do you delete a record from a database? |
A: | Use the DELETE statement to remove records or any particular column values from a database. |
Q: | How can I find the total number of records in a table? |
A: | You could use the COUNT keyword , example SELECT COUNT(*) FROM emp WHERE age>40 |
Q: | What are the Large object types suported by Oracle? |
A: | Blob and Clob. |
Q: | Difference between a "where" clause and a "having" clause. |
A: | Having clause is used only with group functions whereas Where is not used with. |
Q: | What
is a self join? |
A: | Self join is just like any other join, except that two instances of the same table will be joined in the query. |
No comments:
Post a Comment