oracle查看sequence,约束和索引

查看sequence:

select * from user_sequences where sequence_name ='';

查看索引:

select * from user_indexes where table_name='' ;

查看约束:

select * from user_constraints where table_name='';
发布了422 篇原创文章 · 获赞 7 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/enthan809882/article/details/104251945