-1

I have a specific column, called DELIVER_TO_LOCATION_ID , which is in a table called apps.po_requisition_lines_all

I need to dig into the database and derive the continent from the DELIVER_TO_LOCATION_ID ,

In SQL Developer I can't seem to find a way to do this .

any tips appreciated. thanks

Caffeinated
  • 11,982
  • 40
  • 122
  • 216
  • 1
    See: http://stackoverflow.com/questions/4852993/query-to-search-all-packages-for-table-and-or-column and http://stackoverflow.com/questions/1143728/how-can-i-find-which-tables-reference-a-given-table-in-oracle-sql-developer – Mark Leiber Jun 11 '15 at 04:26

1 Answers1

1

You can use following command-

desc tableName

It'll give you description of table including every column in it having any constraints on it or not like primary key, reference key etc.

ShaileshDev
  • 1,086
  • 13
  • 16