I have created a table using SQL and I forgot to insert the values and I want to know what are the columns so that I can insert the values. How to find column names?
CREATE TABLE Employee1 (
id INT PRIMARY KEY,
name VARCHAR(20),
salary INT,
location VARCHAR(20),
gender CHAR(1)
);