python
SELECT GROUP_CONCAT(column_name SEPARATOR ',') AS all_fields
FROM information_schema.columns
WHERE table_name = 'test';
SELECT GROUP_CONCAT(column_name SEPARATOR ',') AS all_fields
FROM information_schema.columns
WHERE table_name = 'test';