In SQL my column names are showing in the middle of the table.I have used the following code
INSERT INTO PETSALE VALUES (1, 'Cat', 450.09, 100.47, '2018-05-29'), (2, 'Dog', 666.66, 150.76, '2018-06-01'), (3, 'Parrot', 50.00, 8.9, '2018-06-04'), (4, 'Hamster', 60.60, 12, '2018-06-11'), (5, 'Goldfish', 48.48, 3.5, '2018-06-14');SELECT * FROM PETSALE;
I want the column names as the header of the table.