MySql delete from other table

Peca

i have two tables

table1:

pnr, dmax
01,  2017-02-02 11:10:00
02,  2017-05-02 10:10:10

and table2:

pnr, type, loc, dt
01,  c3,   l2,  2017-02-02 11:10:00
01,  c3,   l2,  2017-01-01 09:00:00
01,  c3,   l3,  2017-01-01 07:54:30
02,  c5,   l1,  2017-02-05 01:10:00
02,  c5,   l2,  2017-03-01 19:00:10
02,  c5,   l3,  2017-05-02 10:10:10

i like to delete all rows in Table2 which pair is NOT found in Table1 but i'm stuck with my limited mysql knowledge

something like ..... where pnr = pnr AND dmax != dt

please help

SEarle1986
DELETE  table2
FROM    table2
        LEFT JOIN table1
            ON table1.pnr = table2.pnr AND table1.dmax = table2.dt
WHERE   table1.pnr IS NULL

The statement above uses a basic LEFT JOIN. This will return NULL in the right table where no records are found in the left and those are the records we want to delete so we add the IS NULL to the where clause

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Delete from table using column of other table

From Dev

MySQL delete data from a table

From Dev

MySQL delete data from a table

From Dev

how to delete a single value from mysql table

From Dev

delete rows from a table using MySQL Scheduler

From Dev

delete from MySQL table after matching constraints

From Dev

Delete selected row from table in mysql

From Dev

How to delete mysql data from table at midnight?

From Dev

Delete consecutive duplicates from a table in mysql

From Dev

Delete an entire row from a table, using MySQL

From Dev

delete from MySQL table after matching constraints

From Dev

Delete selected row from table in mysql

From Dev

mysql delete duplicate rows from table

From Dev

Delete from MySql table using aggregate functions?

From Dev

jQuery onclick delete row from mysql table

From Dev

mysql query help for delete entries from table

From Dev

How to delete millions of record from mysql table

From Dev

mysql select columns and sum from other table

From Dev

mysql LEFT JOIN with condition from other table

From Dev

Show mysql database data from other table

From Dev

Mysql DELETE from table using information from another table

From Dev

Delete data from a table by fetching data from another table in mysql

From Dev

PHP form delete from MYSQL table dont delete the right row

From Dev

Delete table based on other table

From Dev

how delete parent row with all child row from other table

From Dev

delete from 2 table in sql that have a foreign key in other tables

From Dev

How to delete from a table when a cursor is found in two other cursors

From Dev

Oracle SQL query a table and delete from an other based on the results

From Dev

MySQL delete from Memory table join InnoDB table

Related Related

  1. 1

    Delete from table using column of other table

  2. 2

    MySQL delete data from a table

  3. 3

    MySQL delete data from a table

  4. 4

    how to delete a single value from mysql table

  5. 5

    delete rows from a table using MySQL Scheduler

  6. 6

    delete from MySQL table after matching constraints

  7. 7

    Delete selected row from table in mysql

  8. 8

    How to delete mysql data from table at midnight?

  9. 9

    Delete consecutive duplicates from a table in mysql

  10. 10

    Delete an entire row from a table, using MySQL

  11. 11

    delete from MySQL table after matching constraints

  12. 12

    Delete selected row from table in mysql

  13. 13

    mysql delete duplicate rows from table

  14. 14

    Delete from MySql table using aggregate functions?

  15. 15

    jQuery onclick delete row from mysql table

  16. 16

    mysql query help for delete entries from table

  17. 17

    How to delete millions of record from mysql table

  18. 18

    mysql select columns and sum from other table

  19. 19

    mysql LEFT JOIN with condition from other table

  20. 20

    Show mysql database data from other table

  21. 21

    Mysql DELETE from table using information from another table

  22. 22

    Delete data from a table by fetching data from another table in mysql

  23. 23

    PHP form delete from MYSQL table dont delete the right row

  24. 24

    Delete table based on other table

  25. 25

    how delete parent row with all child row from other table

  26. 26

    delete from 2 table in sql that have a foreign key in other tables

  27. 27

    How to delete from a table when a cursor is found in two other cursors

  28. 28

    Oracle SQL query a table and delete from an other based on the results

  29. 29

    MySQL delete from Memory table join InnoDB table

HotTag

Archive