Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: DELETE using INNER JOIN

    Just try below code should work as its working in sqlserver2008:

    DELETE FROM Orders

    Where exists

    (select 1 FROM Customers c WHERE Orders.CustomerID = c.CustomerID AND c.FirstName = 'vikash')

Viewing post 1 (of 1 total)