Explain basic SQL queries with SELECT from where Order By,
Group By-Having?
Answer Posted / swapna
Order by clause is used to sort information of a table into
specific order either ascending or descending order.
syntax:select stmt order by column;
ex:select * from emp order by sal;
Group by clause is used to divide entire group into
subgroups based on the common values columns.we can use
group by clause along with group functions.
syntax:select group by(exp 1),group by(exp 2),....from
table name group by column name;
select max(sal),min(sal) from emp group by deptno;
Group by clause can allow where clause.
Having:is used to restrict information of the atble based
on condition.
syntax:select group by (exp 1) ,group by (exp 2) from table
name group by column having (condition).
Having and Group by clauses can interchange their positions.
but when using having along with order by clause having
should be placed before order by clause.
| Is This Answer Correct ? | 25 Yes | 4 No |
Post New Answer View All Answers
How can you list all the columns in a database?
How do I save a stored procedure in sql server?
What is collation sensitivity?
Explain acid?
Explain triggers in sql?
What is a linked server in sql server?
What is the order in which the sql query is executed?
What is the purpose of indexing?
What is difference between table aliases and column aliases? Do they affect performance?
What is tablesample?
What do you think of this implementation? Can this be implemented better?
Explain the difference between control flow and data flow?
Explain the disadvantages of cursors?
Can you explain full-text query in sql server?
Once setting replication, can you have distributor on sql server 2005, publisher of sql server 2008?