There is a table1 with records (1,2,3,4,5,6) and table2
with records (4,5,6,7,8,9).write a query so as to get the
result as 1,2,3,4,5,6,7,8,9
Answer Posted / guru
Union gives the result in two records
We have to use cross join like below
select * from table1,table2
| Is This Answer Correct ? | 0 Yes | 8 No |
Post New Answer View All Answers
What are the different types of triggers in SQL SERVER?
What is the difference between truncate and delete commands?
What is difference between clustered index and non clustered index?
How to turn off warning messages during php execution?
Please differentiate between a local and a global temporary table?
What is the need for indexing?
What are out-of-range errors with date and time literals?
Why de-normalization required?
Define left outer join in sql server joins?
What is normalization? Explain its different types?
Can you explain important index characteristics?
How to change a login name in ms sql server?
What do you mean by an execution plan? How would you view it?
what is database replicaion? What are the different types of replication you can set up in sql server? : Sql server database administration
Call by value and call by reference in procedure and function, with NOCOPY.