Top "Sql-delete" questions

The SQL DELETE statement allows you to delete a single row or multiple rows from a SQL table.

SQL DELETE with JOIN another table for WHERE condition

I have to delete rows from guide_category that have no relation with guide table (dead relations). Here is what …

mysql sql delete-row sql-delete mysql-error-1093
Delete many rows from a table using id in Mysql

I am a Linux admin with only basic knowledge in Mysql Queries I want to delete many table entries which …

mysql sql sql-delete
I got error "The DELETE statement conflicted with the REFERENCE constraint"

I tried to truncate a table with foreign keys and got the message: "Cannot truncate table because it is being …

c# sql truncate sql-delete
SQL Delete Records within a specific Range

This is probably a very simple question for somebody with experience, but I just wanted to know the safest way …

sql sql-delete records
MySQL DELETE FROM with subquery as condition

I am trying to do a query like this: DELETE FROM term_hierarchy AS th WHERE th.parent = 1015 AND th.…

mysql sql subquery sql-delete in-subquery
Deleting rows with MySQL LEFT JOIN

I have two tables, one for job deadlines, one for describe a job. Each job can take a status and …

mysql left-join delete-row sql-delete
MySQL WHERE: how to write "!=" or "not equals"?

I need to do this DELETE FROM konta WHERE taken != '' But != doesn't exist in mysql. Anyone know how to …

mysql sql-delete
Delete with "Join" in Oracle sql Query

I am not deeply acquainted with Oracle Sql Queries, therefore I face a problem on deleting some rows from a …

sql oracle sql-delete
MySQL LIMIT on DELETE statement

I put together a test table for a error I recently came across. It involves the use of LIMIT when …

mysql limit sql-delete
How do I delete all the duplicate records in a MySQL table without temp tables

I've seen a number of variations on this but nothing quite matches what I'm trying to accomplish. I have a …

mysql sql duplicates sql-delete unique-index