C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
SQL DELETE JOINThis is very commonly asked question that how to delete or update rows using join clause It is not a very easy process, sometimes, we need to update or delete records on the basis of complex WHERE clauses. There are three tables which we use to operate on SQL syntax for DELETE JOIN. These tables are table1, table2 and target table. SQL Syntax for delete JOIN DELETE [target table] FROM [table1] INNER JOIN [table2] ON [table1.[joining column] = [table2].[joining column] WHERE [condition] Syntax for update UPDATE [target table] SET [target column] = [new value] FROM [table1] INNER JOIN [table2] ON [table1.[joining column] = [table2].[joining column] WHERE [condition]
Next TopicSql Quiz
|