Reputation: 113
Question from my last interview - Can we get cross join result from inner join without using cross join statement in sql server ?
Upvotes: 0
Views: 105
Reputation: 113
Answer is already there in comment,
SELECT *
FROM TableA
INNER JOIN TableB ON 1=1
Upvotes: 1