1、创建表:
create table test
(id int,
name varchar2(20))
2、创建序列:
Create sequence seq_test_id
Increment by 1
Start with 1
Maxvalue 999999
Minvalue 1
Nocycle
nocache
3、插入数据:
insert into test values (seq_test_id.nextval,'badkano')
4、再插入一条数据:
insert into test values (seq_test_id.nextval,'百度知道团长')
这样可见,序号是添加成功的。
通过update方法实现。sql:update table tablename t set filename =值1 where t.name='条件'。
解释:更改某列,说明有条件,所有必须通过“where”条件语句定位到列。定位成功后,通过set方法给固定字段赋值即可。
上面sql语句的意思:更改tablename 表中name值为“条件”的记录,将“filename ”的值改为“值1”。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)