oracle查詢沒有主鍵的表

甲骨文技術支援發表於2017-01-09

用到了exists,經典的功能性SQL

點選(此處)摺疊或開啟

  1. select table_name
  2.   from user_tables a
  3.  where not exists (select *
  4.           from user_constraints b
  5.          where b.constraint_type = 'P'
  6.            and a.table_name = b.table_name)

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20893244/viewspace-2132149/,如需轉載,請註明出處,否則將追究法律責任。

相關文章