-- create table
create table Person2(name varchar(255),age int default 18,address varchar(255) default "Delhi");
insert into Person2(name)VALUES("KEN");
insert into Person2(name)VALUES("TEMI");
insert into Person2(name)VALUES("ROBERTO");
SELECT * FROM Person2;


-- SQL DEFAULT Constraint -
-- The DEFAULT constraint is used to set a default value for a column.
-- The default value will be added to all new records, if no other value is specified.

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: