Administrative MySQL Commands

 0    6 フィッシュ    sir
mp3をダウンロードする 印刷 遊びます 自分をチェック
 
質問 答え
This will be used to select a database in the MySQL workarea.
学び始める
USE Databasename
Lists out the databases that are accessible by the MySQL DBMS.
学び始める
SHOW DATABASES
Shows the tables in the database once a database has been selected with the use command.
学び始める
SHOW TABLES
Shows the attributes, types of attributes, key information, whether NULL is permitted, defaults, and other information for a table.
学び始める
SHOW COLUMNS FROM tablename
Presents the details of all indexes on the table, including the PRIMARY KEY.
学び始める
SHOW INDEX FROM tablename
Reports details of the MySQL DBMS performance and statistics.
学び始める
Reports details of the MySQL DBMS perfor 英語で
SHOW TABLE STATUS LIKE tablename\G

コメントを投稿するにはログインする必要があります。