forum

Home / DeveloperSection / Forums / Inserting into table with a Default column value

Inserting into table with a Default column value

Anonymous User170804-May-2013
Hi Everyone!

I have created a table with a default column value male

CREATE TABLE Persons 
 (name varchar(20), 
  age int, 
  sex varchar(5) default 'male')
Insert statement #1:

INSERT INTO Persons values('Bob', 20)
Insert statement #2:

INSERT INTO Persons(name,sex) values('Bob', 20)
When I try to insert the values into Persons table using the insert statement #1, I get the error shown below

column name or number of supplied values does not match table definition

But when I insert into Persons using statement #2, it successfully executes.

Can some please explain why this happens?

Thanks in advance!

Updated on 04-May-2013
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By