1. 首页
  2. 移动开发
  3. Android
  4. 表的常见操作-android sqlite

表的常见操作-android sqlite

上传者: 2024-07-06 04:44:03上传 PPT文件 66.5KB 热度 17次
表的常见操作tcreate table person(id integer primary key, name text , age integer); tdrop table person; tinsert into person values (1, 'tom', 10); tupdate person set name='bill' where id=1; tselect * from person where name='bill'; tdelete * from person where id=1;
下载地址
用户评论