码迷,mamicode.com
首页 > 数据库 > 详细

mysql

时间:2020-04-15 18:44:05      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:into   val   table   value   mysql   email   def   编号   status   

create table sub(
id int comment ‘编号‘,
email varchar(60) COMMENT ‘订购的邮箱地址‘,
status int comment ‘是否确认,0未确认,1已确认‘,
code varchar(10) comment ‘邮箱确认的验证码‘
)DEFAULT charset=utf8;

 

INSERT into sub VALUES(1,‘123@126.com‘,1,‘trbxpo‘),
(2,‘456@126.com‘,1,‘loicpe‘),
(3,‘789@126.com‘,0,‘jixdami‘),
(4,‘100@126.com‘,0,‘qwwwrty‘);

 

 

select * from sub where status=1;

 

update sub set status =1 where id=3;

 

DELETE from sub where id=2;

mysql

标签:into   val   table   value   mysql   email   def   编号   status   

原文地址:https://www.cnblogs.com/fanqiusha1988/p/12706708.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!