oracle时间字段+1/2是什么意思
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle时间字段+1/2是什么意思相关的知识,希望对你有一定的参考价值。
oracle时间字段+1/2是啥意思
+1是加1天,+1/2是加半天,也就是12小时 参考技术A select * from table a WHERE a.date=to_char(SYSDATE,'yyyymmdd');如果这个表中填写时间的字段是date型的,那么比较的时候
select * from table a WHERE a.date>sysdate-1 and a.date<=sysdate;
oracle normal 是啥意思
参考技术A normal是oracle中的用户normal
是普通用户
sysdba
拥有最高的系统权限
sysoper
主要用来启动、关闭数据库 参考技术B 创建用户:
create
user
normal
identified
by
normal
default
tablespace
tbs_etl_data;
赋权限:
grant
connect,resource,alter
system,debug
connect
session,select
any
table,delete
any
table,drop
any
table,alter
any
table
to
normal
;
创建表:
create
table
tablename(id
varchar2(20));
备注:创建表空间的file路径根据实际需要修改为linux等系统的路径即可。
以上是关于oracle时间字段+1/2是什么意思的主要内容,如果未能解决你的问题,请参考以下文章
Oracle 11g 中如何授权一张表某个字段的select权限给另外一个用户