只问耕耘
分类: Oracle
2010-01-19 09:04:27
Oracle查看表是否存在,表名字必须大写,要不然查不到。
SQL> drop table persons;
表已删除。
SQL> CREATE TABLE Persons(Id_P int,LastName varchar(255),FirstName varchar(255),
Address varchar(255),City varchar(255));
表已创建。
SQL> select count(*) from user_tables where table_name='Persons';
COUNT(*)
----------
0
SQL> select count(*) from user_tables where table_name='PERSONS';
COUNT(*)
----------
1
SQL>