*查询第一条记录:select top 1 * from tablename *随机查询N条记录:select top N * from table order by newid() *判断数据库是否存在:if exists(select * from master..sysdatabases where name='database') *查看数据所有用户表:select * from sysobjects where xtype='u' *判断表是否存在:if exist…
以user1身份登录oracle,然后执行:select table_name from user_tables;或select table_name from tabs; 常用SQL --1.查询oracle的连接数 select count(*) from v$session; --2.查询oracle的并发连接数 select count(*) from v$session where status='ACTIVE'; --3.查看不同用户的连接数 select username,coun…