回覆列表
  • 1 # 慄慄枝

    檢視資料庫,選中使用資料庫,並檢視資料庫表,具體操作命令如下:show databases,use student,show tables。

    選擇student資料庫中的一張表stu_score,檢視資料庫表資料,並利用explain分析資料庫表,select * from stu_score;explain select * from stu_score。檢視資料庫使用索引的情況,使用命令:show status like "Handler_read%"。

    用於分析和儲存表的關鍵字,分析的結果可以得到精準的資訊,利用命令analyze,analyze table stu_score。

    檢查資料庫表stu_score,檢查表是否有錯誤,利用命令:check table stu_score。最佳化資料庫表,利用命令:optimize table stu_score。

    其他參考:顯示錶名:show tables; //先用use進入要查看錶的庫 。

    |show tables即為顯示當前資料庫中所有的表。又如:

    mysql> use mysqlDatabase changedmysql> show tables;+---------------------------+|1653 Tables_in_mysql |+---------------------------+| columns_priv || db || event || func || general_log || help_category || help_keyword || help_relation || help_topic || innodb_index_stats || innodb_table_stats || ndb_binlog_index || plugin || proc || procs_priv || proxies_priv || servers || slave_master_info || slave_relay_log_info || slave_worker_info || slow_log || tables_priv || time_zone || time_zone_leap_second || time_zone_name || time_zone_transition || time_zone_transition_type || user |+---------------------------+28 rows in set (0.05 sec)這個是顯示“mysql”這個資料庫中的所有的表,一共有28張。

    常用命令:

    使用SHOW語句找出在伺服器上當前存在什麼資料庫:mysql> SHOW DATABASES。

    建立一個數據庫MYSQLDATA,mysql> CREATE DATABASE MYSQLDATA。

    選擇你所建立的資料庫,mysql> USE MYSQLDATA按回車鍵出現Database changed 時說明操作成功。

  • 中秋節和大豐收的關聯?
  • 請問瑪莎拉蒂是哪個國家的汽車品牌?