在oracle中一个SQL执行后怎么判断是否成功
1个回答
展开全部
你执行错了会报错,例如:
SQL> select * from tadd;
select * from tadd
*
ERROR at line 1:
ORA-00942: table or view does not exist
正确执行:
SQL> create table lxl as select * from emp;
Table created.
另外 oracle分为DDL DML DCL语言
DDL 数据操纵语言 默认commit
DML数据操作语言 需要手动提交commit
DCL 为数据定义语言 grant revoke
SQL> select * from tadd;
select * from tadd
*
ERROR at line 1:
ORA-00942: table or view does not exist
正确执行:
SQL> create table lxl as select * from emp;
Table created.
另外 oracle分为DDL DML DCL语言
DDL 数据操纵语言 默认commit
DML数据操作语言 需要手动提交commit
DCL 为数据定义语言 grant revoke
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询