select * from yh.zsxx where to_char(rkrq,'yyyy-mm') = to_char(sysdate,'yyyy-mm') ——当月数据
select * from yh.zsxx where to_char(rkrq,'yyyy') = to_char(sysdate,'yyyy')——当年珊瑚橘
1、SQL语句的解释:SQL语句是对数据库进行操作的一种语言。结构化查询语言(Structured Query Language)简称SQL,结构化查询语言是一种数据库查询和程序设计语言,用于存取数据以及查询、更新和管理关系数据库系统。
2、SQL语句介绍:
创建数据库:CREATE DATABASE database-name
删除数据库:drop database dbname
创建新表:create table tabname(col1 type1 [not null] [primary key],col2 type2 [not null],..)
删除新表:drop table tabname
增加一个列Alter table tabname add column col type