我要检索1小时前创建的所有表名。
我写了下面的查询,select table_name from user_tables where table_name created >= (sysdate-1/24);
但是上面的查询没有显示任何值。
语法不正确。顺便说一句,你可以用USER_OBJECTS来代替-
select object_name from user_objects where created >= (sysdate-1/24);
演示。