truncate table hz03;
select trunc(to_number('123.123'),2) from dual;
select * from hz03 order by in_date desc;
select to_char(in_date, 'yyyy-mm-dd hh24:mi:ss') from hz03 order by in_date desc;
update hz05 set stuname='吴创智' where stuid='170318016';
select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') as nowTime from dual;
select * into hz01_old from hz01; -- SQL 语句
select * from hz01_old;
create table hz01_old as select * from hz01;
insert into hz01_old select * from hz01;
select trunc(to_number('123.123'),2) from dual;
select * from hz03 order by in_date desc;
select to_char(in_date, 'yyyy-mm-dd hh24:mi:ss') from hz03 order by in_date desc;
update hz05 set stuname='吴创智' where stuid='170318016';
select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') as nowTime from dual;
select * into hz01_old from hz01; -- SQL 语句
select * from hz01_old;
create table hz01_old as select * from hz01;
insert into hz01_old select * from hz01;