update 表名 set 字段=新值 where 修改的条件 update person set name="Doe",age=20where _id=1
删除数据
1 2
deletefrom 表名 where 删除的条件 deletefrom person where _id=2
查询语句
1 2 3 4 5 6 7 8 9 10 11
select 字段名 from 表名 where 查询条件 groupby 分组的字段 having 筛选条件 orderby 排序字段 select*from person //查询person表内所有数据 select _id,name from person select*from person where _id=1 select*from person where _id<>1//查询person表内_id不等于1的数据 select*from person where _id=1and age>18 select*from person where name like "%渡%" //模糊查找name中含有“渡”的数据 select*from person where name like "_渡%" //模糊查找name中一个字符之后是“渡”的数据(后面可以是任意多字符) select*from person where name isnull select*from person where age between10and20//查找年龄在10岁到20岁之间的数据 select*from person where age>18orderby _id //查找年龄大于18岁的数据,并根据_id进行排序