單項(xiàng)選擇題oracle數(shù)據(jù)庫(kù)中,查詢(xún)數(shù)據(jù)庫(kù)中某個(gè)表如TEST所在的表空間(tablespace)的SQL命令是()。

A.select tablespace_name from dba_tablespaces where table_name=’TEST’;
B.select tablespace_name from user_tables where table_name=’TEST’;
C.select tablespace_name from dba_tables where table_name=’TEST’;
D.select tablespace_name from user_tablespaces where table_name=’TEST’;


您可能感興趣的試卷

你可能感興趣的試題

1.單項(xiàng)選擇題oracle數(shù)據(jù)庫(kù)中,快速清空一個(gè)大表(非drop表)的SQL命令是()。

A.truncate from table_name;
B.delete table table_name;
C.truncate table_name;
D.truncate table table_name;

2.單項(xiàng)選擇題oracle數(shù)據(jù)庫(kù)中,查詢(xún)TEST表一共有多少條數(shù)據(jù)的一般用什么SQL命令?()

A.select count from TEST;
B.select cnt from TEST;
C.select count(*)from TEST;
D.select cnt(*)from TEST;

4.單項(xiàng)選擇題oracle數(shù)據(jù)庫(kù)中,如何查詢(xún)當(dāng)前用戶(hù)下有哪些表的SQL命令?()

A.select table_name from dba_tab;
B.select table_name from dba_tables;
C.select table_name from user_tables;
D.select table_name from user_tab;

5.單項(xiàng)選擇題oracle數(shù)據(jù)庫(kù)中,已知TEST表有一個(gè)字段score(數(shù)值型),查找TEST表中score字段最小值的SQL命令是()。

A.SELECT MAX(score)FROM TEST
B.SELECT SUM(score)FROM TEST
C.SELECT MIN(score)FROM TEST
D.SELECT AVG(score)FROM TEST