I want to delete using INNER JOIN in SQL Server 2008.
INNER JOIN
But I get this error:
Msg 156, Level 15, State 1, Line 15<
It should be:
DELETE zpost FROM zpost INNER JOIN zcomment ON (zpost.zpostid = zcomment.zpostid) WHERE zcomment.icomment = "first"