- 
                    Changing Rows into ColumsHow to change rows to columns and columns into rows? 
- 
                    
- 
                    How to delete records from two tables. There is relationship between two tables.It's working in MySQL but not in SQL-Server. 
- 
                    Query to find the list of employees age > 30Write a query to find the list of employees whos age is greater than 30 or so given a date of birth column 
- 
                    
- 
                    
- 
                    
- 
                    When do you use WHERE clause and when do you use HAVING clause?HAVING clause is used when you want to specify a condition for a group function and it is written after GROUP BY clause. The WHERE clause is used when you want to specify a condition for columns, single row functions except group functions and it is written before GROUP BY clause if it is used. 
- 
                    What are various joins used while writing SUBQUERIES?Self join-Its a join foreign key of a table references the same table. Outer Join--Its a join condition used where One can query all the rows of one of the tables in the join condition even though they don't satisfy the join condition.Equi-join--Its a join condition that retrieves rows from one or more tables in which one or more columns in one table are equal to one or more columns in the second table. 

 
  
  
  Read Best Answer
 
                        Read Best Answer