zoukankan      html  css  js  c++  java
  • MySQL中表的基本操作1

    (1)查看MySQL中存在的数据库

     mysql> show databases;
     +--------------------+
     | Database           |
     +--------------------+
     | information_schema |
     | mysql              |
     | performance_schema |
     | test               |
     +--------------------+
     4 rows in set (0.00 sec)

    (2)创建数据库

     mysql> create database justforfun;
     Query OK, 1 row affected (0.08 sec)
     
     mysql> show databases;
     +--------------------+
     | Database           |
     +--------------------+
     | information_schema |
     | justforfun         |
     | mysql              |
     | performance_schema |
     | test               |
     +--------------------+
     5 rows in set (0.00 sec)

    (3)删除数据库

     mysql> drop database justforfun;
     Query OK, 0 rows affected (0.33 sec)
     
     mysql> show databases;
     +--------------------+
     | Database           |
     +--------------------+
     | information_schema |
     | mysql              |
     | performance_schema |
     | test               |
     +--------------------+
     4 rows in set (0.00 sec)

    (4)查看MySQL所支持的存储引擎

     mysql> show engines;
     +--------------------+---------+--------------------------------------------------
     
     ----------+--------------+------+------------+
     | Engine             | Support | Comment                                            
     
             | Transactions | XA   | Savepoints |
     +--------------------+---------+--------------------------------------------------
     
     ----------+--------------+------+------------+
     | MRG_MYISAM         | YES     | Collection of identical MyISAM tables              
     
             | NO           | NO   | NO         |
     | PERFORMANCE_SCHEMA | YES     | Performance Schema                                 
     
             | NO           | NO   | NO         |
     | InnoDB             | DEFAULT | Supports transactions, row-level locking, and 
     
     foreign keys | YES          | YES  | YES        |
     | CSV                | YES     | CSV storage engine                                 
     
             | NO           | NO   | NO         |
     | MyISAM             | YES     | MyISAM storage engine                              
     
             | NO           | NO   | NO         |
     | MEMORY             | YES     | Hash based, stored in memory, useful for temporary 
     
     tables  | NO           | NO   | NO         |
     +--------------------+---------+--------------------------------------------------
     
     ----------+--------------+------+------------+
     6 rows in set (0.04 sec)
     
     mysql> show engines \G
     *************************** 1. row ***************************
           Engine: MRG_MYISAM
          Support: YES
          Comment: Collection of identical MyISAM tables
     Transactions: NO
               XA: NO
       Savepoints: NO
     *************************** 2. row ***************************
           Engine: PERFORMANCE_SCHEMA
          Support: YES
          Comment: Performance Schema
     Transactions: NO
               XA: NO
       Savepoints: NO
     *************************** 3. row ***************************
           Engine: InnoDB
          Support: DEFAULT
          Comment: Supports transactions, row-level locking, and foreign keys
     Transactions: YES
               XA: YES
       Savepoints: YES
     *************************** 4. row ***************************
           Engine: CSV
          Support: YES
          Comment: CSV storage engine
     Transactions: NO
               XA: NO
       Savepoints: NO
     *************************** 5. row ***************************
           Engine: MyISAM
          Support: YES
          Comment: MyISAM storage engine
     Transactions: NO
               XA: NO
       Savepoints: NO
     *************************** 6. row ***************************
           Engine: MEMORY
          Support: YES
          Comment: Hash based, stored in memory, useful for temporary tables
     Transactions: NO
               XA: NO
       Savepoints: NO
     6 rows in set (0.00 sec)

    (5)查看MySQL的默认引擎

     mysql> show variables like 'storage_engine';
     +----------------+--------+
     | Variable_name  | Value  |
     +----------------+--------+
     | storage_engine | InnoDB |
     +----------------+--------+
     1 row in set (0.00 sec)
     
     mysql>


     

  • 相关阅读:
    echarts 报表使用
    Eclipse Java注释模板设置详解
    简单实现支付密码输入框 By HL
    一个label 混搭不同颜色,不同字体的文字.. by 徐
    有关MVC设计模式 #DF
    自定义粘贴板-陈鹏
    TableView 常用技巧与功能详解
    ios 类别和扩展-赵小波
    推荐一本书--《浪潮之巅》(完整版的哦)----董鑫
    iOS block的用法 by -- 周傅琦君
  • 原文地址:https://www.cnblogs.com/Robotke1/p/3042842.html
Copyright © 2011-2022 走看看