Look into MySQL Wildcards.
The correct MySQL Query for your search should be
WHERE tb_posts.post_content LIKE "%example.com%"
You should also be sure that you only target published posts (in contrast to nav_menu_items, revisions etc). Expand your WHERE with this:
AND tb_posts.post_type IN ('post','page',*All Posttypes you use additionally*) AND tb_posts.post_status="publish"
So your complete Query should look like this (assuming that you only use posts and pages):
UPDATE tb_posts
SET post_status="draft"
WHERE post_content LIKE "%example.com%"
AND post_type IN ('post','page')
AND post_status="publish"
Happy Coding!
Related Posts:
- Delete duplicate rows from wordpress database where a column is duplicate in phpmyadmin
- Query WordPress database by registered date and role
- SQL Query to get post_id from wp_posts and and meta_key(s) from wp_postmeta
- Inserting Post Meta From SQL
- Change SQL get_results to search for posts with custom term in custom taxonomy
- Change all http to https in mysql databse?
- WooCommerce – Query for ordered products
- How to execute mulitple statement SQL queries using $wpdb->query?
- Size article thumbnails and retrieve them directly from database
- How to query the WordPress database to get posts of a certain custom post type, taxonomy and field?
- Select Multiple meta_value from WP DB; Single Query
- wpdb_prepare with multiple or condition
- SQL Error wp_commentmeta – incorrect table definition
- CRUD operations using WordPress database API
- WordPress and MySQL: how to transfer Meta_key and Meta_Value from one post_id to another
- How do I get the posts within a certain year/date(with sql query)?
- Advanced SELECT query with condtional statements
- Slow queries constantly getting stuck on WordPress database of ~100,000 posts
- Create table from array with prepare
- Query multiple tables at once?
- Custom WordPress Table wpdb
- Why this query is not showing any result on wordpresss home page?
- Best practice to limit results in get_row()?
- Why does changing Database Table Prefixes result in loss of content?
- Query Column of Specific ID from Database Table
- $wpdb->get_var – What value is returned when zero records are found?
- How to display data from db in select list [closed]
- DB prefix not updating
- I wanted to Know that how can I give ingore to 0000-00-00 in my config file
- Job and Employee Performance Tracking with Product Safety
- WordPress Database Query works in phpMyAdmin but not in the code
- How to create index (sql) to a meta_key?
- Delete all users meta that named: user_avatar
- The MySQL Connection could not be established., before it was joomla but i have change it into worpress
- Migrated to Namecheap, now Trouble with Database & wp-config [closed]
- export individual posts to text files or a single csv file
- SQL query : Select a thumbnail for a media
- why you don’t Implement PDO for access every thing to database
- SQL query to rewrite all media URLs to end with .webp
- Deleting WordPress posts and media files based on author via MYSQL database
- SQL errors when querying for something with apostrophes
- MySQL Error: : ‘Access denied for user ‘root’@’localhost’
- Can’t connect to MySQL server on ‘127.0.0.1’ (10061) (2003)
- How do I restore a dump file from mysqldump?
- 1052: Column ‘id’ in field list is ambiguous
- 1052: Column ‘id’ in field list is ambiguous
- difference between primary key and unique key
- phpMyAdmin – Error > Incorrect format parameter?
- How to do a batch insert in MySQL
- Why is my database import losing text widget data?
- How to fetch Data in WordPress using MySQLi or $wpdb
- Connect to database using wordpress wp-config file
- Is there a way to list all used/unused WP templates?
- Reset Post IDs to less than 64bit integer
- Does WordPress use the InnoDB engine for MySQL by default?
- Display data from a non wordpress database on a page template
- Multipart/formatted MySQL query problem
- SQL query equivalent to WP User Query
- Bulk Update of Custom Post Type Post Status through SQL
- How do I add indexes to WordPress Database?
- Huge wp_options table
- Block search SQL from happening
- WordPress and automated MySQL backups to a different host
- Scheduling posts in database
- How Do I Merge Categories With phpMyAdmin
- Emojis getting converted to “?”
- Query from a different database than the default
- Error establishing database connection – high traffic?
- Bulk-create posts from SQL database
- Replace/Mute/Stop Search Query
- Migrating to WordPress Recipe Plugin and Some SQL Issues
- How to prevent/delay MySQL connections when an object cache is used?
- Is it possible to query from external database? [duplicate]
- Can’t update WordFence Options, clear data manually
- Changing between Local Host DB to Production DB and in reverse
- Is it possible to have more than 1 MySQL database in my WordPress blog?
- How and where is wordpress adding mySQL content to database?
- Using AND and bracket grouping in SQL not working
- Delete/Replace words from X to Y in post content
- Cloning blog to localhost via WAMP
- Counting post and changing roles in mysql database. Query not code
- Join Query on WP_USERMETA Table
- I imported an restore an database and It shows #1067 – Invalid default value for ‘user_registered’
- Exporting Post ID, Post Title, Primary Category and Primary Category ID
- How to set posts to draft in bulk based on the content of the post
- 2 $wpdb queries causing error Table ‘wp_postmeta’ is specified twice, both as a target for ‘UPDATE’
- Performance bug – slow DB query
- After renaming MySQL database, I can no longer access my Blog page
- WordPress character set issue
- can’t delete a row from post_meta table
- Link wordpress with a SQl + MongoDB + .NET
- Why is converting my database to UTF-8 truncating entries?
- How to add data from wordpress tables to new database tables you have created
- Using class id from array for query
- How to back-up a database on IIS
- WordPress database connection failed, while mysql client is working [closed]
- Have WordPress Use a Different Database for users
- How to generate PDF dynamically based on values from the database in WordPress
- Remove posts that start with similar words (like a delete duplicate posts plugin)
- Count views without get_post_meta