- 增
- 删
- 改
- 查
提交事务
oracle 默认所有操作都是在事务中,如果要保存操作,需要commit
才能生效
commit //非常重要!!!
增加数据
insert into "表名" ("列1名","列2名") values ("值1","值2") //如果插入的是所有列,则可以省略`("列1名","列2名")`这部分
日期函数:
to_date('2017-03-14 14:30:40', 'yyyy-mm-dd hh24:mi:ss') //可以转化为数据库能存储的时间格式
删除数据
delete from "表名" where 条件语句
改
update "表名" set "列1"="值1","列2"="值2"
查
select * from "表名" where "列1"="值1"
条件语句
where not "条件1" and "条件2" or "条件3"