Q:
| |
A:
|
SQL stands for 'Structured Query Language'.
|
Q:
| |
A:
|
SELECT * FROM people WHERE empname LIKE '%ab%'
Would return a record set with records consisting empname the sequence 'ab' in empname . |
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:
|
You could use the COUNT keyword , example
SELECT COUNT(*) FROM emp WHERE age>40 |
Q:
| |
A:
|
Blob and Clob.
|
Q:
| |
A:
|
Having clause is used only with group functions whereas Where is not used with.
|
Q:
| |
A:
|
Both primary key and unique enforce uniqueness of the column on which they are defined. But by default primary key creates a clustered index on the column, where are unique creates a nonclustered index by default. Another major difference is that, primary key doesn't allow NULLs, but unique key allows one NULL only.
|
Q:
| |
A:
|
Cursors allow row-by-row prcessing of the resultsets.
Types of cursors: Static, Dynamic, Forward-only, Keyset-driven. See books online for more information.
Disadvantages of cursors: Each time you fetch a row from the cursor, it results in a network roundtrip, where as a normal SELECT query makes only one rowundtrip, however large the resultset is. Cursors are also costly because they require more resources and temporary storage (results in more IO operations). Further, there are restrictions on the SELECT statements that can be used with some types of cursors.
Most of the times, set based operations can be used instead of cursors.
|
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:
|
Self join is just like any other join, except that two instances of the same table will be joined in the query.
|