Database name, data table name, field name in MySQL

Source: Internet
Author: User

How to query the database name, data table name, field name in Oracle,sql server,mysqlCategory: Database2012-09-24 22:16 7034 people read reviews (0) favorite reports Database SQL Serveroraclemysqltableobject

Directory (?) [+]

When developing a project, there is a feature that needs to see what tables are in the database, and what fields are available for each table, viewed online, and now shared with you.
Oracle:
Query data table (Tables) Name:
Select table_name, Tablespace_name
From Dba_tables
where tablespace_name = ' USERS ';
Field (Columns) name in Query data table (Tables):
Sql1:select column_name from All_tab_columns where table_name= ' table1 ';
Sql2:select column_name from User_tab_columns where table_name= ' table1 ';
Query Database (Databases) name
SQL Server:
Query Database (Databases) name:
SELECT name from master.dbo.sysdatabases WHERE status <> 512
Query data table (Tables) Name:
SELECT name from dbo.sysobjects WHERE objectproperty (id,n ' isusertable ') = 1 and name <> ' dtproperties '
Query the data table (Tables) name with schema:
SELECT b.name + '. ' + a.name as name from sysobjects a INNER joins Sys.schemas B on a.uid=b.schema_id WHERE objectproperty ( Id,n ' isusertable ') = 1 and a.name <> ' dtproperties '
Field (Columns) name in Query data table (Tables):

SELECT * from Dbo.syscolumns WHERE id=object_id (N ' [production].[ Product] ') ORDER by colid

Or

Select name from syscolumns Where id=object_id (' Tname ')

Mysql:
Query Database (Databases) name:
Show DATABASES/* This can see all the database names */
Query data table (Tables) Name:
Show TABLES/* can view all tables in the current database */
Field (Columns) name in Query data table (Tables):
Show columns form table name from database name
Or:
Show columns from database name. Table name

Database name, data table name, field name in MySQL

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.