I want to add a column name for my table
create table flowers
(
flowerName varchar (22) not null, primary key
)
Instead of the result being:
flowerName
----------
tulip
I want the result to be:
The Name of the flower is:
--------------------------
tulip
flowerNameis a really good name for the column.