本文介绍android中的数据库的增删改查 复习sql语法: * 增 insert into info (name,phone) values ('wuyudong','111') * 删 delete from person where name = 'wuyudong' * 改 update person set number='119' where name='wuyudong' * 查 select * from person select * from person where nam…
数据库操作的资料: 链接: https://pan.baidu.com/s/1dFl3q6X 密码: nvy7-- 增:insert into 表名 (列名) values (值) ,'dew') -- 删:表名 where 列名=值 -- 查:select 列名 from 表名 where 列名=值 select id from Test -- 查询所有信息:select * from 表名 select * from Test -- 使用别名查询之一:select 列名 as 别名 from…