其他分享
首页 > 其他分享> > dml语言-插入

dml语言-插入

作者:互联网

数据操作语言:

插入 :insert

修改:update

删除:delete

 

 

插入语句:

语法:

insert  into 表名(列名,。。。)

valuees(值1,值2);

 

select*from beauty;

1.插入的值得类型药浴列的类型一直或兼容

inset into beauty(id,name,sex,borndate,photo,boydriend_id)

values(13,"唐艺昕",“怒”,“1990-1-23”,“154812”,null,2);

2.为空

可以为空,列名和直都不写

3.列的顺序可以调换

insert into beauty(name,sex,id,phone)

values (“蒋欣”,"怒“”,"123");

4.列数和值得个数必须一致

5.可以省略列名,默认所有列,而且列的顺序和表中的列的顺序必须一致

insert into beauty

values((10,"张飞","男",“生日”,null,“119”,null,null);

方式2:

语法:

insert into 表名

set 列名=值,列名=值,....

 

insert  into beauty 

set id=19,name=“李涛”,phoee="1516563";

2.种方式大pk

1.方式一支持插入多行

inssert into beauty 

values (......),(.....),(....);

方式1支持子查询

insert into beauty(id,name,phone)

select 26,"送钱",“11115”

from bors where id<3;

将查询语句结果集插入进去

 

 

 

 

 

查询语句结果集再插入

 

标签:insert,语言,beauty,into,dml,插入,id,列名
来源: https://www.cnblogs.com/zyb-luckey/p/16511686.html