Delete rows from table

Q-ximi

I am having a table TF with rows FILEID, WORD, FREQUENCY. I am trying to delete all word rows with word 'and' 'of' 'the' from the table. Below is my query. It is not doing anything.

delete from TF
where WORD='of' AND WORD='and' AND WORD='the';
Juraj Petrik

use OR instead of AND

delete from TF
where WORD='of' OR WORD='and' OR WORD='the';

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 X rows from table

From Dev

Delete duplicate rows from table with no unique key

From Dev

Better "delete rows from table" performance

From Dev

Delete Rows from a Constrained Reference Table

From Dev

delete rows from a table using MySQL Scheduler

From Dev

Delete rows from table recursively using JQ

From Dev

Delete duplicate rows from a BigQuery table

From Dev

Delete few rows from db table

From Dev

Cannot delete rows from a table SQL

From Dev

multiple queries to delete rows from table

From Dev

delete rows from a table that are not present in another

From Dev

How to delete some similar rows from a table?

From Dev

mysql delete duplicate rows from table

From Dev

Delete rows from Table, remove unpaid transaction

From Dev

Delete rows from table inner join

From Dev

How to delete from table then delete what deleted rows referenced? (postgresql)

From Dev

How to Use Delete Triggers to Delete Rows From Same Table?

From Dev

Delete rows from a data table that exists in another data table

From Dev

Delete rows from a data table that exists in another data table

From Dev

How to delete rows from a table based on a join with another table?

From Dev

How to delete rows from one table matching another table?

From Dev

Delete all data rows from an Excel table (apart from the first)

From Dev

Delete duplicate rows in a table

From Dev

Delete rows in Data table

From Dev

Postgresql: How to delete rows from table constrained by date?

From Dev

Delete rows from a table without checking that they exist first

From Dev

How to delete unknown number of rows from sql table

From Dev

What is the best way in Android to delete all rows from a table

From Dev

BigQuery SQL delete rows from a target table based on a condition

Related Related

  1. 1

    Delete X rows from table

  2. 2

    Delete duplicate rows from table with no unique key

  3. 3

    Better "delete rows from table" performance

  4. 4

    Delete Rows from a Constrained Reference Table

  5. 5

    delete rows from a table using MySQL Scheduler

  6. 6

    Delete rows from table recursively using JQ

  7. 7

    Delete duplicate rows from a BigQuery table

  8. 8

    Delete few rows from db table

  9. 9

    Cannot delete rows from a table SQL

  10. 10

    multiple queries to delete rows from table

  11. 11

    delete rows from a table that are not present in another

  12. 12

    How to delete some similar rows from a table?

  13. 13

    mysql delete duplicate rows from table

  14. 14

    Delete rows from Table, remove unpaid transaction

  15. 15

    Delete rows from table inner join

  16. 16

    How to delete from table then delete what deleted rows referenced? (postgresql)

  17. 17

    How to Use Delete Triggers to Delete Rows From Same Table?

  18. 18

    Delete rows from a data table that exists in another data table

  19. 19

    Delete rows from a data table that exists in another data table

  20. 20

    How to delete rows from a table based on a join with another table?

  21. 21

    How to delete rows from one table matching another table?

  22. 22

    Delete all data rows from an Excel table (apart from the first)

  23. 23

    Delete duplicate rows in a table

  24. 24

    Delete rows in Data table

  25. 25

    Postgresql: How to delete rows from table constrained by date?

  26. 26

    Delete rows from a table without checking that they exist first

  27. 27

    How to delete unknown number of rows from sql table

  28. 28

    What is the best way in Android to delete all rows from a table

  29. 29

    BigQuery SQL delete rows from a target table based on a condition

HotTag

Archive