Skip to content

Instantly share code, notes, and snippets.

@emjayess
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emjayess/fba1c3e25c54f056c64c to your computer and use it in GitHub Desktop.
Save emjayess/fba1c3e25c54f056c64c to your computer and use it in GitHub Desktop.
MySQL statement to show tables with 'cache' in the table name
#mysql> show tables from `mydrupaldb` where `tables_in_mydrupaldb` like '%cache%';
mysql> show tables like '%cache%'; # this works, for just a single pattern match
+----------------------------------+
| Tables_in_mydrupaldb |
+----------------------------------+
| cache |
| cache_admin_menu |
| cache_apachesolr |
| cache_block |
| cache_bootstrap |
| cache_coffee |
| cache_ds_panels |
| cache_entity_comment |
| cache_entity_file |
| cache_entity_node |
| cache_entity_og_membership |
| cache_entity_og_membership_type |
| cache_entity_taxonomy_term |
| cache_entity_taxonomy_vocabulary |
| cache_entity_user |
| cache_field |
| cache_filter |
| cache_form |
| cache_image |
| cache_libraries |
| cache_location |
| cache_media_xml |
| cache_menu |
| cache_page |
| cache_path |
| cache_rules |
| cache_token |
| cache_update |
| cache_variable |
| cache_vars |
| cache_views |
| cache_views_data |
| ctools_css_cache |
| ctools_object_cache |
+----------------------------------+
34 rows in set (0.00 sec)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment