Admittedly I am no SQL guru but I have done my research and I am still baffled as to why SQL Studio is giving me a hard time with the following query:
DELETE
[liaison].[dbo].[LI_ENT_Entry],
[liaison].[dbo].[LI_ENT_AppEntry],
[liaison].[dbo].[LI_ENT_AppEntryLink]
FROM
[liaison].[dbo].[LI_ENT_Entry]
INNER JOIN
[liaison].[dbo].[LI_ENT_AppEntry]
ON
[liaison].[dbo].[LI_ENT_Entry].[ID] = [liaison].[dbo].[LI_ENT_AppEntry].[LI_ENT_Entry__ID]
LEFT JOIN
[liaison].[dbo].[LI_ENT_AppEntryLink]
ON
[liaison].[dbo].[LI_ENT_AppEntry].[ID] = [liaison].[dbo].[LI_ENT_AppEntryLink].[LI_ENT_AppEntry__ID_Child]
WHERE
[liaison].[dbo].[LI_ENT_Entry].[PrimaryLangName] = 'Hamers, Patrick'
More precisely I get an "Incorrect syntax near ','" right at the first coma after the DELETE statement. Looking around the web and on StackOverflow it should have been the correct syntax. I am confused.