Oracle Application Express 显示从 oracle table 中删除的数据
Oracle Application Express shows deleted data from oracle table
我从 Oracle 中删除了一行
delete from student where gr_number = 51777;
在包含交互式报告的 Oracle Application Express 表单中,从学生那里获取数据显示已删除的行。我还使用来自 Oracle Application Express 的 SQL 命令进行检查,它再次显示已删除的行
select * from student where gr_number = 51777;
请说明为什么 Oracle Application Express 显示从 Oracle table 中删除的记录。
我正在使用 Oracle Application Express 18.2
因为您在发出 DELETE
.
后没有 COMMIT
我从 Oracle 中删除了一行
delete from student where gr_number = 51777;
在包含交互式报告的 Oracle Application Express 表单中,从学生那里获取数据显示已删除的行。我还使用来自 Oracle Application Express 的 SQL 命令进行检查,它再次显示已删除的行
select * from student where gr_number = 51777;
请说明为什么 Oracle Application Express 显示从 Oracle table 中删除的记录。
我正在使用 Oracle Application Express 18.2
因为您在发出 DELETE
.