Skip to content
midenok edited this page Jul 18, 2014 · 3 revisions
Get column names to paste into SELECT query
select group_concat(column_name separator ', ')
from information_schema.columns
where table_schema='<SCHEMA>' and table_name='<TABLE>';

Clone this wiki locally