查询当前用户下的所有表
select * from user_tables;
根据约束名查询设置约束的表名
select owner,table_name from dba_constraints where constraint_name='fk_device_check';
ORACLE查询表
查询当前用户下的所有表
select * from user_tables;
根据约束名查询设置约束的表名
select owner,table_name from dba_constraints where constraint_name='fk_device_check';