1、mysql中创建测试表,create table test_user(id int, name varchar(20))
2、插入测试数据,
insert into test_user values(1001,'jack')
insert into test_user values(1002,'lucy')
insert into test_user values(1003,'mike')
insert into test_user values(1004,'john')
insert into test_user values(1005,'may')
3、查看表中所有数据,select * from test_user
4、编写sql,查询name列是否有jack名,
select * from test_user t where name = 'jack'
判断NULL用is null或者 is not null,sql语句里可以用ifnull函数来处理。判断空字符串‘’,要用 =或者 ,sql语句里可以用if(col,col,0)处理,即当col为true时(非null,及非)显示否则打印0。
drop table if exists‘XXX’,备份sql中一般都有这样的语句,如果是数据库中有这个表,先drop掉,然后create表,然后再进行数据插入。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)