Apr 22, 2010

Publicize yourself ... Improve your business... 100% Free!!

Do you want to publicize your business?
Do you need live feedbacks and comments about your new business?
Do wanna want to quantify your publicity?
Would you like make free ads for your business?
Do you want to meet business experts?

Just a click to publicize yourself and business.... http://saalram com


--
====================
Publicize Yourself... Free!
http://saalram.com
====================

Apr 4, 2010

What is a self join?

What is a self join?

     Self join is just like any other join, except that two instances of the same table will be joined in the query.


====================
Publicize Yourself... Free!
http://saalram.com
====================


What is a join and explain different types of joins.

What is a join and explain different types of joins.
   

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.



====================
Publicize Yourself... Free!
http://saalram.com
====================


What are triggers? How to invoke a trigger on demand?

What are triggers? How to invoke a trigger on demand?

     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.


==========================
Make free Ads... Publicize yourself...
http://saalram.com
==========================


What are cursors? Explain different types of cursors. What are the disadvantages of cursors? How can you avoid cursors?

What are cursors? Explain different types of cursors. What are the disadvantages of cursors? How can you avoid cursors?


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). Furthere, 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.


=====================================
Publicize Yourself... Improve your business... Free!
http://saalram.com
======================================


What's the difference between a primary key and a unique key?

What's the difference between a primary key and a unique key?

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.
     
====================
Publicize Yourself... Free!
http://saalram.com
====================


Difference between a "where" clause and a "having" clause.

Difference between a "where" clause and a "having" clause.

     Having clause is used only with group functions whereas Where is not used with.


====================
Publicize Yourself... Free!
http://saalram.com
====================


What is the difference among "dropping a table", "truncating a table" and "deleting all records" from a table.


What is the difference among "dropping a table", "truncating a table" and "deleting all records" from a table.

     Dropping :  (Table structure  + Data are deleted), Invalidates the dependent objects ,Drops the indexes

Truncating:  (Data alone deleted), Performs an automatic commit, Faster than delete

Delete : (Data alone deleted), Doesn't perform automatic commit


====================
Publicize Yourself... Free!
http://saalram.com
====================


What is GROUP BY?

What is GROUP BY?

     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.


====================
Publicize Yourself... Free!
http://saalram.com
====================


How can I find the total number of records in a table?

How can I find the total number of records in a table?

You could use the COUNT keyword , example

SELECT COUNT(*) FROM emp WHERE age>40


==============================================

Publicize yourself ... Improve your business... Free!!

http://saalram.com
===============================================


How to get the results of a Query sorted in any order?

How to get the results of a Query sorted in any order?

     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

========================
Publicize Yourself... Free!
http://saalram.com
========================


How could I get distinct entries from a table?

How could I get distinct entries from a table?

     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


===================================
Publicize Your Business... Earn More...  Free!
http://saalram.com
===================================


How do you delete a record from a database?


How do you delete a record from a database?

     Use the DELETE statement to remove records or any particular column values from a database.


====================
Publicize Yourself... Free!
http://saalram.com
====================


What is the INSERT statement?

What is the INSERT statement?

     The INSERT statement lets you insert information into a database.


====================
Find friends... Free!
http://saalram.com
====================


How can you compare a part of the name rather than the entire name?

How can you compare a part of the name rather than the entire name?

     SELECT * FROM people WHERE empname LIKE '%ab%'
    Would return a recordset with records consisting empname the sequence 'ab' in empname .


==============================
Publicize Yourself... Earn More... Free!
http://saalram.com
==============================


What is SELECT statement?

What is SELECT statement?
     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.


====================
Publicize Yourself... Free!
http://saalram.com
====================


What is SQL?

What is SQL?
A:     SQL stands for 'Structured Query Language'.



========================
Publicize Yourself... Free!
http://saalram.com
========================


Saalram
Publicize yourself ...
http://saalram.com

Free !!!


Place your Ad here - Free!!!
just drop us a mail ... saalram.service@gmail.com

Free !!!