How to get database structure in MySQL via query

Jakub Arnold

Is it possible to somehow get structure of MySQL database, or just some table with simple query?

Or is there another way, how can I do it?

Bill the Lizard

I think that what you're after is DESCRIBE

DESCRIBE table;

You can also use SHOW TABLES

SHOW TABLES;

to get a list of the tables in your database.

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

How to do this query against MySQL database table?

分類Dev

How To get All Rows in Mysql Database (Java)

分類Dev

Query MySql database in Docker

分類Dev

Query a MySQL database

分類Dev

How to get a mysql query to use a specific index?

分類Dev

How to write a query to get result in mysql

分類Dev

How to get data on mongodb via logical query into node.js?

分類Dev

query to pivot data in mysql database

分類Dev

Ecommerce Database structure for product feautures in MYSQL (innoDB)

分類Dev

How to get row from database MySQL using python?

分類Dev

How to get data from mysql database only for this year

分類Dev

How to get remote access to a MySQL database on my computer?

分類Dev

how can i transform a mysql query "group by statement" result to a json structure?

分類Dev

Need a query to get a single value from comma seperated value in database using mysql

分類Dev

How to get number of rows by select query using mysql

分類Dev

how do i get last result in group by MySQL query (not the first)

分類Dev

How to get MySQL query to carry over with PHP Pagination?

分類Dev

How do i connect one table in a mySQL database to more than one other table via foreign keys?

分類Dev

How would I properly structure this database?

分類Dev

How to structure the database for an e-commerce application?

分類Dev

Upadate mysql database text using a query

分類Dev

Passing a mysql query to the database using a java program

分類Dev

Update query for java JDBC +mysql database

分類Dev

query mysql database by field and return all occurrences

分類Dev

How to use "map" data structure "in a query"

分類Dev

MySQL: database structure choice - big data - duplicate data or bridging

分類Dev

How to insert an image to the mysql database

分類Dev

How I query array type via Mongodb

分類Dev

php pdo get database version(MYSQL)

Related 関連記事

  1. 1

    How to do this query against MySQL database table?

  2. 2

    How To get All Rows in Mysql Database (Java)

  3. 3

    Query MySql database in Docker

  4. 4

    Query a MySQL database

  5. 5

    How to get a mysql query to use a specific index?

  6. 6

    How to write a query to get result in mysql

  7. 7

    How to get data on mongodb via logical query into node.js?

  8. 8

    query to pivot data in mysql database

  9. 9

    Ecommerce Database structure for product feautures in MYSQL (innoDB)

  10. 10

    How to get row from database MySQL using python?

  11. 11

    How to get data from mysql database only for this year

  12. 12

    How to get remote access to a MySQL database on my computer?

  13. 13

    how can i transform a mysql query "group by statement" result to a json structure?

  14. 14

    Need a query to get a single value from comma seperated value in database using mysql

  15. 15

    How to get number of rows by select query using mysql

  16. 16

    how do i get last result in group by MySQL query (not the first)

  17. 17

    How to get MySQL query to carry over with PHP Pagination?

  18. 18

    How do i connect one table in a mySQL database to more than one other table via foreign keys?

  19. 19

    How would I properly structure this database?

  20. 20

    How to structure the database for an e-commerce application?

  21. 21

    Upadate mysql database text using a query

  22. 22

    Passing a mysql query to the database using a java program

  23. 23

    Update query for java JDBC +mysql database

  24. 24

    query mysql database by field and return all occurrences

  25. 25

    How to use "map" data structure "in a query"

  26. 26

    MySQL: database structure choice - big data - duplicate data or bridging

  27. 27

    How to insert an image to the mysql database

  28. 28

    How I query array type via Mongodb

  29. 29

    php pdo get database version(MYSQL)

ホットタグ

アーカイブ