mysql

Posted 胖豆芽

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

MySQLMySQL 一些 使用 案例

MySQL的常用操作更改root密码连接MySQLMySQL常用的命令

MySQLMysql必会语句

MySQLMysql必会语句

MySQLMysql必会语句

mysqlmysql优化