1
Answer

Schema Creation Failed: A table must have at least 1 column:

Abhishek  Jaiswal

Abhishek Jaiswal

10y
2.6k
1
hello!
 
am getting an error while creating this table,
(Schema Creation Failed: A table must have at least 1 column:)
 
create table EMP_TABLE
{
Name Varchar(20),
ID int not null,
Age int,
Salary float (20,2),
primary key(ID)
};
 
 
Answers (1)