📄 Viewing: getCollations.sql
SELECT t.table_schema,
t.table_name,
t.table_collation,
ccsa.character_set_name
FROM information_schema.tables t
inner join information_schema.collation_character_set_applicability ccsa
on t.table_collation = ccsa.collation_name
/* where table_name in ('wp_abj404_redirects', 'wp_posts') */
where lower(t.table_name) = lower('{table_name}')
/* and TABLE_SCHEMA = '404-solution' */
and lower(table_schema) = lower('{TABLE_SCHEMA}')
🌑 DarkStealth — WP Plugin Edition
Directory: /home/httpd/html/matrixmodels.com/public_html/wp-content/plugins/404-solution/includes/sql