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

Node 数据库1

时间:2018-10-22 16:42:38      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:where   har   var   into   insert   nbsp   增加   条件表达式   字符串   

VARCHAR字符串

字段id 类型INT 额外 auto_increment 设为主键

增加 插入
insert into 表名(列名1,列名2,....)values(值1,值2....),(值1,值2....)
删除
delete from 表名 where 条件表达式
注:条件表达式->列名=值 列名<值 列名>值
修改
update表名 set 列名1=值1,列名2=值2 where条件表达式
查询
1.查询全部
select*from表名
2.查询全部列
select 列名 from 表名
3.按条件查询
select*from 表名 where 条件1 and 条件2
4.模糊查询
select*from 表名 where 列名 like “%val%” 查询数据中带val的
select*from 表名 where 列名 like “val%” 查询数据以val开头的
select*from 表名 where 列名 like “%val” 查询数据以val结尾的
5.限制条数
select*from 表名 limit 开始下标(0),条数

 

Node 数据库1

标签:where   har   var   into   insert   nbsp   增加   条件表达式   字符串   

原文地址:https://www.cnblogs.com/mapsxy/p/9830574.html

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