摘要:
select * from
(
select rownum as sn,a.* from
(
select table_name,num_rows
from user_tables
where num_rows is not null
order by num_rows desc
) a
) b
where b.sn<11; 阅读全文
摘要:
有一张emp619表结构如下: create table emp619( id number(12), name nvarchar2(20), title nvarchar2(20), primary key(id) ); 使用如下SQL充值: insert into emp619 select r 阅读全文