Q: | |
A: | SQL stands for 'Structured Query Language'. |
Q: | |
A: | The SELECT statement lets you select a set of values from a table in a database. The values selected from the database table would depend on the various conditions that are specified in the SQL query. |
Q: | |
A: | The INSERT statement lets you insert information into a database. |
Q: | |
A: | Use the DELETE statement to remove records or any particular column values from a database. |
Q: | |
A: | The SELECT statement in conjunction with DISTINCT lets you select a set of distinct values from a table in a database. The values selected from the database table would of course depend on the various conditions that are specified in the SQL query. Example SELECT DISTINCT empname FROM emptable |
Q: | |
A: | You can sort the results and return the sorted results to your program by using ORDER BY keyword thus saving you the pain of carrying out the sorting yourself. The ORDER BY keyword is used for sorting. SELECT empname, age, city FROM emptable ORDER BY empname |
Q: | |
A: | You could use the COUNT keyword , example |
Q: | |
A: | The GROUP BY keywords have been added to SQL because aggregate functions (like SUM) return the aggregate of all column values every time they are called. Without the GROUP BY functionality, finding the sum for each individual group of column values was not possible. |
Q: | |
A: | Blob and Clob. |
Q: | |
A: | Having clause is used only with group functions whereas Where is not used with. |
Q: | |
A: | Triggers are special kind of stored procedures that get executed automatically when an INSERT, UPDATE or DELETE operation takes place on a table. Triggers can't be invoked on demand. They get triggered only when an associated action (INSERT, UPDATE, DELETE) happens on the table on which they are defined. Triggers are generally used to implement business rules, auditing. Triggers can also be used to extend the referential integrity checks, but wherever possible, use constraints for this purpose, instead of triggers, as constraints are much faster. |
Q: | |
A: | Joins are used in queries to explain how different tables are related. Joins also let you select data from a table depending upon data from another table. Types of joins: INNER JOINs, OUTER JOINs, CROSS JOINs. OUTER JOINs are further classified as LEFT OUTER JOINS, RIGHT OUTER JOINS and FULL OUTER JOINS. |
Q: | |
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