select * from 表 where 时间字段 >= to_date(\'2022-06-08 00:00:00\',\'yyyy-MM-dd HH24:MI:SS\') AND 时间字段<= to_date(\'2022-06-11 00:00:00\',\'yyyy-MM-dd HH24:...
创建数据库表创建 scott 数据库中的 dept 表create table dept( -- 部门编号 deptno int unsigned auto_increment primary key, -- 部门名称 dname varc...