I want to check, if a column (mysql) exists. If not, mysql should take the value from a column that definitely exists. My Query looks like this, but it does not work:
IF NOT EXISTS (SELECT `en` FROM `HP_strings`
WHERE `name`='copyright' AND `group`='system')
THEN
SELECT `default` FROM `HP_strings`
WHERE `name`='copyright' AND `group`='system';
I also tried
IFNULL((SELECT `en` FROM `HP_strings`
WHERE `name`='copyright' AND `group`='system'),
(SELECT `default` FROM `HP_strings`
WHERE `name`='copyright' AND `group`='system'));
Same result (error)
EDIT: 'en' does NOT EXIST. I want to know, if it exists.
To inspect a table structure in MySQL, you have to query the
information_schema
database. To do that, your db user must have access to that system database (which a regular user shouldn't have).I don't know what you are trying to do, but you should probably rethink you database structure so it doesn't require checking if a column exists in a table.