标签:二进制 core 语句 建立 用两个 auto 身高 .sql 编号
1.Plist(NSDictionary NSArray)只能存储数组与字典,但是数组与字典不能有自定义对象;
2.编号设置:也不能存储自定义对象
3.归档与解档:能存储自定义对象,局限:一次性读取与存储操作
4.sqlite3:能存储自定义对象没有局限性.操作方便,可与局部的读取,小轻型、占用资源少。
create table if not exists 表名 (字段名1 字段类型1, 字段名2 字段类型2, …)
drop table if exists 表名 ;
示例:drop table t_student ;
示例insert into t_student (name, age) values (‘mj’, 10) ;
注意:数据库中的字符串内容应该用单引号 ’ 括住
示例:update t_student set name = ‘jack’, age = 20 ;
注意:上面的示例会将t_student表中所有记录的name都改为jack,age都改为20
select * from t_student ;
select * from t_student where age > 10 ; // 条件查询
格式(字段和表都可以起别名)
示例
select name myname, age myage from t_student ;
select s.name, s.age from t_student s ;
create table if not exists NCStudent_tmp (stuNum integer, name text, age integer, address text, primary key(stuNum));
insert into NCStudent_tmp (stuNum) select stuNum from NCStudent;
update NCStudent_tmp set name = (select name from NCStudent where NCStudent_tmp.stuNum = NCStudent.stuNum);
drop TABLE if exists NCStudent;
alter table NCStudent_tmp rename to NCStudent;
标签:二进制 core 语句 建立 用两个 auto 身高 .sql 编号
原文地址:http://www.cnblogs.com/520ljw/p/7215532.html