π
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT REPLACE((SELECT group_concat(COLUMN_NAME) | |
| FROM INFORMATION_SCHEMA.COLUMNS | |
| WHERE TABLE_SCHEMA = '<database-name>' AND TABLE_NAME = '<table-name>'), ',', '`, `'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // [WP] wpdb-query-error-pre ------------------------------------ | |
| echo '<pre>QUERY: '.var_export($wpdb->last_query, true).'</pre>' | |
| .'<pre>ERROR: '.var_export($wpdb->last_error, true).'</pre>'; | |
| // @TODO: remove after debug! | |
| // -------------------------------------------------------------- |