For simplicity, assume all relevant fields are NOT NULL. You can do: SELECT table1.this, table2.that, ta
Both these joins will give me the same results: SELECT * FROM table JOIN otherTable ON table.ID = otherTable.
I want to delete using INNER JOIN in SQL Server 2008. But I get this error: Msg 156, Level 15, State 1, L
Also how do LEFT JOIN, RIGHT JOIN and FULL JOIN fit in?