Abhishek  Jaiswal

Abhishek Jaiswal

  • 95
  • 19.8k
  • 9.6m

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

Jun 23 2014 8:03 AM
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)