I need to join table A (tax related) to table B (customer related)
I take no more than 1 record, but sometimes I do not record.
Now I need to return the combined record to the user
I though a simple Cartesian product would have work
SELECT * FROM TableA, TableB
but this does not work if TableA or TableB is empty
I would make a full outer join, but right now I canβt join. I could create temporary tables with identity columns and then join them (since 1 = 1)
But I was looking for another way?
thanks
source share