oracle describe table

相關問題 & 資訊整理

oracle describe table

Description. Provides a decription of the specified table or view. For a list of tables in the current schema, use the Show Tables command. For a list of views in ... ,DESCRIBE. Syntax. DESC[RIBE] [schema.]object[@db_link]}. Lists the column definitions for the specified table, view or synonym, or the specifications for the ... , You don't say what UI you are using, but DESC works in all of them that I know of. If it doesn't. SELECT * FROM ALL_TAB_COLUMNS WHERE ..., Specifically desc is equivalent to the following which I stole from ... Oracle has a set tables containing meta data about the database structure., For MySQL/Oracle, Use: DESCRIBE name_of_table;., If you are asking about SQL*Plus commands ( show create table table_name doesn't appear to be a SQL statement), you can use the desc ...,Describe an Oracle Table, View, Synonym, package or Function. Note that because this is a SQL*Plus command you don't need to terminate it with a semicolon. ,You can use DESCRIBE to get a list of columns in a table or view, along with ... - Selection from Oracle SQL*Plus: The Definitive Guide, 2nd Edition [Book] ,Why not? desc emp; So, you will be able to view the details. Or, else -> SELECT * FROM ALL_TAB_COLS WHERE TABLE_NAME = 'EMP' ...

相關軟體 MySQL 資訊

MySQL
MySQL 是一個開源的 RDBMS(關係數據庫管理系統),它支持用 C,C ++,Java,Perl 和 PHP 等各種編程語言編寫的請求。由於其高速度和靈活性,MySQL 已成為主要用於開發各種形狀和大小的 Web 應用程序的最流行的數據庫系統之一。自 1995 年上市以來,這種非常受歡迎的開源數據庫管理系統已經應用於當今幾乎所有互聯網用戶的無數項目中。今天一些最受歡迎的 MySQL 用戶是 ... MySQL 軟體介紹

oracle describe table 相關參考資料
Describe command - Oracle Docs

Description. Provides a decription of the specified table or view. For a list of tables in the current schema, use the Show Tables command. For a list of views in ...

https://docs.oracle.com

describe - Oracle Docs

DESCRIBE. Syntax. DESC[RIBE] [schema.]object[@db_link]}. Lists the column definitions for the specified table, view or synonym, or the specifications for the ...

https://docs.oracle.com

Describe table SQL Oracle - Stack Overflow

You don't say what UI you are using, but DESC works in all of them that I know of. If it doesn't. SELECT * FROM ALL_TAB_COLUMNS WHERE ...

https://stackoverflow.com

oracle11g - How can I describe a table in Oracle without using the ...

Specifically desc is equivalent to the following which I stole from ... Oracle has a set tables containing meta data about the database structure.

https://stackoverflow.com

sql - How do I list all the columns in a table? - Stack Overflow

For MySQL/Oracle, Use: DESCRIBE name_of_table;.

https://stackoverflow.com

`show create table` equivalent in oracle sql - Stack Overflow

If you are asking about SQL*Plus commands ( show create table table_name doesn't appear to be a SQL statement), you can use the desc ...

https://stackoverflow.com

Desc - Describe an Oracle Table, View, Synonym, package or ... - SS64

Describe an Oracle Table, View, Synonym, package or Function. Note that because this is a SQL*Plus command you don't need to terminate it with a semicolon.

https://ss64.com

10.1. The DESCRIBE Command - Oracle SQL*Plus: The Definitive ...

You can use DESCRIBE to get a list of columns in a table or view, along with ... - Selection from Oracle SQL*Plus: The Definitive Guide, 2nd Edition [Book]

https://www.oreilly.com

view table structure | Oracle Community

Why not? desc emp; So, you will be able to view the details. Or, else -> SELECT * FROM ALL_TAB_COLS WHERE TABLE_NAME = 'EMP' ...

https://community.oracle.com