I\'m new to SQL. I have a table \'Customers\' and it looks like this.
You can use SHOW COLUMNS FROM Customers to get the name of the columns
SHOW COLUMNS FROM Customers
Then just use SELECT * FROM Customers to retrieve the data
SELECT * FROM Customers