Is there a way to return all columns in a MySQL table in row format?
I would like to return something like this:
course_id, name, par, yds, mtrs , etc.
I know how to show fields / columns in a table ( SHOW FIELDS FROM course; ), however they are returned in table format.
source share