SQL Examples Flashcards
How to implement cartesian product in SQL?
What are some of the string operations in SQL?
How is “in” operator used in SQL?
What is a Sub Query?
What are Nested Subqueries?
How are subqueries in the Where clause formed?
How is set comparison operator “Some” clause used in SQL?
How is set comparison operator “all” clause used in SQL?
How and why is a “exists” clause and “not exists” used?
How to test for absence of duplicate tuples using “Unique” clause?
How are subqueries in the From clause formed?
How is SQL “With” clause used?
How are subqueries in the Select clause formed?
How to delete tuples from a table in SQL?
How to insert tuples into a table in SQL?
How to update a tuple in SQL?
How is the conditional statement “CASE” used in SQL?
What are the different types of joins between relations?
What is “inner join”?
What is “outer join”?
What is “Left Outer Join”?
What is “Right Outer Join”?
What is “Full Outer Join”?
What is “Self Join”?
What is a view?
How to define a view in SQL?
What are composition of views in SQL? aka View Expansion
How to update a view?
What are materialized views?
What are Transactions?
What are integrity Constraints? Give examples
What is referential integrity?
What are cascading actions in referential integrity?
What are SQL Data types?
How to create an Index in SQL?
How to create a User Defined data type in SQL?
What are domains? and how to create domains in SQL?
What are the Authorization Specifications in SQL? What are the previleges in SQL?
How to revoke authorizations in SQL?
What are Roles in SQL? how are they created?
What are triggers?
A trigger defines a set of actions that are performed in response to an insert, update,
or delete operation on a specified table
To design a trigger mechanism, we must:
◦ Specify the events / (like update, insert, or delete) for the trigger to executed
◦ Specify the time (BEFORE or AFTER) of execution
◦ Specify the actions to be taken when the trigger executes
There are two types of triggers based on the level at which the triggers are applied:
1.Row level triggers
2.Statement level triggers
Used for logging, Auditing users and their actions, adding additional values to a table, simple validataion.
Adding triggers is often seen as faster and easier than adding code to an application,
but the cost of doing so is compounded over time with each added line of code
Property of aggregate functions with respect to null values
Except count(*) all other aggregate functions ignore NULL Values
What is the difference between where clause and having clause
In where clause you cannot use aggregate functions.. normally group by clause is executed before having clause and so aggregate functions could be used on having clause
What does Check integrity constraint mean ?
It is set while creating the table and is enforced whenever data is added
Age INT CHECK(Age>18)
What character is used to signify space while using like clause
%