Companywise Interview Questions
SourceHOV Interview Questions
SQL:
- Difference between Union and union all?
- what is join? explain its types?
- Difference between CTE, temporary table and table variable
- Write down multiple CTE syntax?
- SELECT * FROM Table1, Table2
How many rows above query will generate if table1 has 5 rows and table 2 has 10 rows
- Difference between Pivot and Unpivot?
- Multiple ways to insert data in SQL table
- Define sequence and series for one example
- How to remove duplicate records?
- How to replace male to female and female to male in single update query?
- What is the output of below query
select case when null=null then 1 else 0 end
- What is wrong in below query?
Select year(employeejoindate) from emplyee where employeejoindate<2010
- There are two tables, show unmatched records without using NULL
- What is output of query when we join 2 table and it has null value
Post a Comment
0 Comments