how to find all columns with specific name in mysql code example
Example: mysql select all columns and specific fields as
SELECT mytable.*, column20 AS Customer, column11 FROM mytable
-- OR
SELECT column11, column20 AS Customer, mytable.* FROM mytable