For the various popular database systems, how do you list all the columns in a table?
For Oracle (PL/SQL)
SELECT column_name FROM user_tab_cols WHERE table_name = 'myTableName'
For MySQL
SHOW COLUMNS FROM table_name