There are two tables in SQL Server
table1 (Id INT)
table2 (Id INT)
in table1 there are ten records and in table2 contains 0 record
when i select from both tables
Select * from table1, table2
in output window there is no result display..
but when i inserted a new record in table2 and execute again same above select statement then it will display table1 record along with table2 records.
I am getting confused why first select statement does not show any record?