站保站

服务市场
  • 网站市场
  • 单机游戏
  • 平台大厅
  • 转让市场
  • 发卡市场
  • 广告市场
  • 下载市场
  • 收录市场
  • 本站平台
    平台客服
    微信Q群



    平台微博/weibo    平台微信/公众号    平台抖音/快手   
    曝光台    保障    地图   
    上传资源 快速赚钱
    站保站    登录      |  注册  |  

    只需一步,快速开始!

     找回密码   |   协议
    热门搜索: 网站开发 App报毒 挖矿源码 代办资质

    MySQL 案例实战--MySQL 数据库表操作

    • 时间:2020-10-27 14:37 编辑:腿毛从不褪色 来源: 阅读:43
    • 扫一扫,手机访问
    摘要:

    前言

    本环境是基于 Centos 7.8 系统构建MySQL-5.7.14
    具体构建,请参考 MySQL-5.7.14 环境构建


    一、查看表

    查看当前数据库中的表

    mysql> use sys;
    Reading table information for completion of table and column names
    You can turn off this feature to get a quicker startup with -A
    
    Database changed
    mysql> show tables;
    +-----------------------------------------------+
    | Tables_in_sys                                 |
    +-----------------------------------------------+
    | host_summary                                  |
    | host_summary_by_file_io                       |
    | host_summary_by_file_io_type                  |
    | host_summary_by_stages                        |
    | host_summary_by_statement_latency             |
    | host_summary_by_statement_type                |
    | innodb_buffer_stats_by_schema                 |
    | innodb_buffer_stats_by_table                  |
    | innodb_lock_waits                             |
    | io_by_thread_by_latency                       |
    | io_global_by_file_by_bytes                    |
    | io_global_by_file_by_latency                  |
    | io_global_by_wait_by_bytes                    |
    | io_global_by_wait_by_latency                  |
    | latest_file_io                                |
    | memory_by_host_by_current_bytes               |
    | memory_by_thread_by_current_bytes             |
    | memory_by_user_by_current_bytes               |
    | memory_global_by_current_bytes                |
    | memory_global_total                           |
    | metrics                                       |
    | processlist                                   |
    | ps_check_lost_instrumentation                 |
    | schema_auto_increment_columns                 |
    | schema_index_statistics                       |
    | schema_object_overview                        |
    | schema_redundant_indexes                      |
    | schema_table_lock_waits                       |
    | schema_table_statistics                       |
    | schema_table_statistics_with_buffer           |
    | schema_tables_with_full_table_scans           |
    | schema_unused_indexes                         |
    | session                                       |
    | session_ssl_status                            |
    | statement_analysis                            |
    | statements_with_errors_or_warnings            |
    | statements_with_full_table_scans              |
    | statements_with_runtimes_in_95th_percentile   |
    | statements_with_sorting                       |
    | statements_with_temp_tables                   |
    | sys_config                                    |
    | user_summary                                  |
    | user_summary_by_file_io                       |
    | user_summary_by_file_io_type                  |
    | user_summary_by_stages                        |
    | user_summary_by_statement_latency             |
    | user_summary_by_statement_type                |
    | version                                       |
    | wait_classes_global_by_avg_latency            |
    | wait_classes_global_by_latency                |
    | waits_by_host_by_latency                      |
    | waits_by_user_by_latency                      |
    | waits_global_by_latency                       |
    | x$host_summary                                |
    | x$host_summary_by_file_io                     |
    | x$host_summary_by_file_io_type                |
    | x$host_summary_by_stages                      |
    | x$host_summary_by_statement_latency           |
    | x$host_summary_by_statement_type              |
    | x$innodb_buffer_stats_by_schema               |
    | x$innodb_buffer_stats_by_table                |
    | x$innodb_lock_waits                           |
    | x$io_by_thread_by_latency                     |
    | x$io_global_by_file_by_bytes                  |
    | x$io_global_by_file_by_latency                |
    | x$io_global_by_wait_by_bytes                  |
    | x$io_global_by_wait_by_latency                |
    | x$latest_file_io                              |
    | x$memory_by_host_by_current_bytes             |
    | x$memory_by_thread_by_current_bytes           |
    | x$memory_by_user_by_current_bytes             |
    | x$memory_global_by_current_bytes              |
    | x$memory_global_total                         |
    | x$processlist                                 |
    | x$ps_digest_95th_percentile_by_avg_us         |
    | x$ps_digest_avg_latency_distribution          |
    | x$ps_schema_table_statistics_io               |
    | x$schema_flattened_keys                       |
    | x$schema_index_statistics                     |
    | x$schema_table_lock_waits                     |
    | x$schema_table_statistics                     |
    | x$schema_table_statistics_with_buffer         |
    | x$schema_tables_with_full_table_scans         |
    | x$session                                     |
    | x$statement_analysis                          |
    | x$statements_with_errors_or_warnings          |
    | x$statements_with_full_table_scans            |
    | x$statements_with_runtimes_in_95th_percentile |
    | x$statements_with_sorting                     |
    | x$statements_with_temp_tables                 |
    | x$user_summary                                |
    | x$user_summary_by_file_io                     |
    | x$user_summary_by_file_io_type                |
    | x$user_summary_by_stages                      |
    | x$user_summary_by_statement_latency           |
    | x$user_summary_by_statement_type              |
    | x$wait_classes_global_by_avg_latency          |
    | x$wait_classes_global_by_latency              |
    | x$waits_by_host_by_latency                    |
    | x$waits_by_user_by_latency                    |
    | x$waits_global_by_latency                     |
    +-----------------------------------------------+
    101 rows in set (0.00 sec)
    
    mysql> 
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114

    查看其它数据库中的表

    mysql> use mysql;
    Reading table information for completion of table and column names
    You can turn off this feature to get a quicker startup with -A
    
    Database changed
    mysql> show tables from sys;
    +-----------------------------------------------+
    | Tables_in_sys                                 |
    +-----------------------------------------------+
    | host_summary                                  |
    | host_summary_by_file_io                       |
    | host_summary_by_file_io_type                  |
    | host_summary_by_stages                        |
    | host_summary_by_statement_latency             |
    | host_summary_by_statement_type                |
    | innodb_buffer_stats_by_schema                 |
    | innodb_buffer_stats_by_table                  |
    | innodb_lock_waits                             |
    | io_by_thread_by_latency                       |
    | io_global_by_file_by_bytes                    |
    | io_global_by_file_by_latency                  |
    | io_global_by_wait_by_bytes                    |
    | io_global_by_wait_by_latency                  |
    | latest_file_io                                |
    | memory_by_host_by_current_bytes               |
    | memory_by_thread_by_current_bytes             |
    | memory_by_user_by_current_bytes               |
    | memory_global_by_current_bytes                |
    | memory_global_total                           |
    | metrics                                       |
    | processlist                                   |
    | ps_check_lost_instrumentation                 |
    | schema_auto_increment_columns                 |
    | schema_index_statistics                       |
    | schema_object_overview                        |
    | schema_redundant_indexes                      |
    | schema_table_lock_waits                       |
    | schema_table_statistics                       |
    | schema_table_statistics_with_buffer           |
    | schema_tables_with_full_table_scans           |
    | schema_unused_indexes                         |
    | session                                       |
    | session_ssl_status                            |
    | statement_analysis                            |
    | statements_with_errors_or_warnings            |
    | statements_with_full_table_scans              |
    | statements_with_runtimes_in_95th_percentile   |
    | statements_with_sorting                       |
    | statements_with_temp_tables                   |
    | sys_config                                    |
    | user_summary                                  |
    | user_summary_by_file_io                       |
    | user_summary_by_file_io_type                  |
    | user_summary_by_stages                        |
    | user_summary_by_statement_latency             |
    | user_summary_by_statement_type                |
    | version                                       |
    | wait_classes_global_by_avg_latency            |
    | wait_classes_global_by_latency                |
    | waits_by_host_by_latency                      |
    | waits_by_user_by_latency                      |
    | waits_global_by_latency                       |
    | x$host_summary                                |
    | x$host_summary_by_file_io                     |
    | x$host_summary_by_file_io_type                |
    | x$host_summary_by_stages                      |
    | x$host_summary_by_statement_latency           |
    | x$host_summary_by_statement_type              |
    | x$innodb_buffer_stats_by_schema               |
    | x$innodb_buffer_stats_by_table                |
    | x$innodb_lock_waits                           |
    | x$io_by_thread_by_latency                     |
    | x$io_global_by_file_by_bytes                  |
    | x$io_global_by_file_by_latency                |
    | x$io_global_by_wait_by_bytes                  |
    | x$io_global_by_wait_by_latency                |
    | x$latest_file_io                              |
    | x$memory_by_host_by_current_bytes             |
    | x$memory_by_thread_by_current_bytes           |
    | x$memory_by_user_by_current_bytes             |
    | x$memory_global_by_current_bytes              |
    | x$memory_global_total                         |
    | x$processlist                                 |
    | x$ps_digest_95th_percentile_by_avg_us         |
    | x$ps_digest_avg_latency_distribution          |
    | x$ps_schema_table_statistics_io               |
    | x$schema_flattened_keys                       |
    | x$schema_index_statistics                     |
    | x$schema_table_lock_waits                     |
    | x$schema_table_statistics                     |
    | x$schema_table_statistics_with_buffer         |
    | x$schema_tables_with_full_table_scans         |
    | x$session                                     |
    | x$statement_analysis                          |
    | x$statements_with_errors_or_warnings          |
    | x$statements_with_full_table_scans            |
    | x$statements_with_runtimes_in_95th_percentile |
    | x$statements_with_sorting                     |
    | x$statements_with_temp_tables                 |
    | x$user_summary                                |
    | x$user_summary_by_file_io                     |
    | x$user_summary_by_file_io_type                |
    | x$user_summary_by_stages                      |
    | x$user_summary_by_statement_latency           |
    | x$user_summary_by_statement_type              |
    | x$wait_classes_global_by_avg_latency          |
    | x$wait_classes_global_by_latency              |
    | x$waits_by_host_by_latency                    |
    | x$waits_by_user_by_latency                    |
    | x$waits_global_by_latency                     |
    +-----------------------------------------------+
    101 rows in set (0.00 sec)
    
    mysql> 
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114

    二、创建表

    mysql> use db2;
    Database changed
    mysql> create table tb1(
        -> id int,
        -> name char(20)
        -> );
    Query OK, 0 rows affected (0.35 sec)
    
    mysql> 
    
    #查看结果
    mysql> show tables;
    +---------------+
    | Tables_in_db2 |
    +---------------+
    | tb1           |
    +---------------+
    1 row in set (0.00 sec)
    
    mysql> 
    
    #查看表结构
    mysql> desc tb1;
    +-------+----------+------+-----+---------+-------+
    | Field | Type     | Null | Key | Default | Extra |
    +-------+----------+------+-----+---------+-------+
    | id    | int(11)  | YES  |     | NULL    |       |
    | name  | char(20) | YES  |     | NULL    |       |
    +-------+----------+------+-----+---------+-------+
    2 rows in set (0.00 sec)
    
    mysql> 
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32

    表的约束

    • NOT NULL 非空
    #创建数据库,且id 不能不为空
    mysql> create table tb2(
        -> id int not null,
        -> name char(20)
        -> );
    Query OK, 0 rows affected (0.36 sec)
    
    #插入数据,当id为空时,插入数据失败
    mysql> insert into tb2(name) values('tom');
    ERROR 1364 (HY000): Field 'id' doesn't have a default value
    
    #插入数据,当id不为空时,插入数据成功
    mysql> insert into tb2(id,name) values(01,'tom');
    Query OK, 1 row affected (0.00 sec)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • UNIQUE Key 唯一键
    mysql> create table tb3(id int,name char(20) unique);
    Query OK, 0 rows affected (0.36 sec)
    
    mysql> insert into tb3(name) values('tom');
    Query OK, 1 row affected (0.00 sec)
    
    mysql> insert into tb3(name) values('tom');
    ERROR 1062 (23000): Duplicate entry 'tom' for key 'name'
    mysql> insert into tb3(name) values('bob');
    Query OK, 1 row affected (0.00 sec)
    
    mysql> 
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • PRIMARY KEY主键(不能为空,且唯一)
    mysql> create table tb4(
        -> id int primary key,
        -> name char(20)
        -> );
    Query OK, 0 rows affected (0.00 sec)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • FOREIGN KEY外键(参照完整性)
    CREATE TABLE tb_dept(
    dept_id INT PRIMARY KEY,
    NAME VARCHAR(18),
    description VARCHAR(255)
    );
    CREATE TABLE tb_employee(
    employee_id INT PRIMARY KEY,
    NAME VARCHAR(18),
    gender VARCHAR(10),
    dept_id INT REFERENCES tb_dept(dept_id),
    address VARCHAR(255)
    );
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • CHECK检查
      某些MySQL版本不支持检查
    mysql> create table tb5(
        -> name char(12),
        -> age tinyint unsigned,
        -> check (age<=120)
        -> );
    Query OK, 0 rows affected (0.01 sec)
    
    mysql> insert into tb5
        -> values('alice',140);
    Query OK, 1 row affected (0.00 sec)
    
    mysql> 
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 默认值(采用枚举类型实现)
    mysql> create table tb6(
        -> name char(12),
        -> gender enum('M','F') default'M'
        -> );
    Query OK, 0 rows affected (0.00 sec)
    
    mysql> insert into tb6(name) values('tom');
    Query OK, 1 row affected (0.00 sec)
    
    mysql> select * from tb6;
    +------+--------+
    | name | gender |
    +------+--------+
    | tom  | M      |
    +------+--------+
    1 row in set (0.00 sec)
    
    mysql> insert into tb6(name,gender) values('aclice','F');
    Query OK, 1 row affected (0.00 sec)
    mysql> select * from tb6;
    +--------+--------+
    | name   | gender |
    +--------+--------+
    | tom    | M      |
    | aclice | F      |
    +--------+--------+
    2 rows in set (0.00 sec
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 数值类型 自增长
    mysql> create table tb7(
        -> id int primary key auto_increment,
        -> name char(20)
        -> );
    Query OK, 0 rows affected (0.01 sec)
    
    mysql> insert into tb7(name) values('tom');
    Query OK, 1 row affected (0.00 sec)
    
    mysql> insert into tb7(name) values('bob');
    Query OK, 1 row affected (0.00 sec)
    
    mysql> insert into tb7(name) values('alice');
    Query OK, 1 row affected (0.00 sec)
    
    mysql> select * from tb7;
    +----+-------+
    | id | name  |
    +----+-------+
    |  1 | tom   |
    |  2 | bob   |
    |  3 | alice |
    +----+-------+
    3 rows in set (0.00 sec)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24

    三、修改表

    修改列的类型

    mysql> desc tb1;
    +-------+----------+------+-----+---------+-------+
    | Field | Type     | Null | Key | Default | Extra |
    +-------+----------+------+-----+---------+-------+
    | id    | int(11)  | YES  |     | NULL    |       |
    | name  | char(20) | YES  |     | NULL    |       |
    +-------+----------+------+-----+---------+-------+
    2 rows in set (0.00 sec)
    
    mysql> alter table tb1
        -> modify id tinyint;
    Query OK, 0 rows affected (0.54 sec)
    Records: 0  Duplicates: 0  Warnings: 0
    
    mysql> desc tb1;
    +-------+------------+------+-----+---------+-------+
    | Field | Type       | Null | Key | Default | Extra |
    +-------+------------+------+-----+---------+-------+
    | id    | tinyint(4) | YES  |     | NULL    |       |
    | name  | char(20)   | YES  |     | NULL    |       |
    +-------+------------+------+-----+---------+-------+
    2 rows in set (0.00 sec)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22

    增加列

    mysql> alter table tb1
        -> add address varchar(100);
    Query OK, 0 rows affected (0.01 sec)
    Records: 0  Duplicates: 0  Warnings: 0
    
    mysql> desc tb1;
    +---------+--------------+------+-----+---------+-------+
    | Field   | Type         | Null | Key | Default | Extra |
    +---------+--------------+------+-----+---------+-------+
    | id      | tinyint(4)   | YES  |     | NULL    |       |
    | name    | char(20)     | YES  |     | NULL    |       |
    | address | varchar(100) | YES  |     | NULL    |       |
    +---------+--------------+------+-----+---------+-------+
    3 rows in set (0.00 sec)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    增加列到第一列

    mysql> alter table tb1 add age int first;
    Query OK, 0 rows affected (0.35 sec)
    Records: 0  Duplicates: 0  Warnings: 0
    
    mysql> desc tb1;
    +---------+--------------+------+-----+---------+-------+
    | Field   | Type         | Null | Key | Default | Extra |
    +---------+--------------+------+-----+---------+-------+
    | age     | int(11)      | YES  |     | NULL    |       |
    | id      | tinyint(4)   | YES  |     | NULL    |       |
    | name    | char(20)     | YES  |     | NULL    |       |
    | address | varchar(100) | YES  |     | NULL    |       |
    +---------+--------------+------+-----+---------+-------+
    4 rows in set (0.00 sec)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    增加列到第三列后面

    mysql> alter table tb1 add num char(10) after name;
    Query OK, 0 rows affected (0.35 sec)
    Records: 0  Duplicates: 0  Warnings: 0
    
    mysql> desc tb1;
    +---------+--------------+------+-----+---------+-------+
    | Field   | Type         | Null | Key | Default | Extra |
    +---------+--------------+------+-----+---------+-------+
    | age     | int(11)      | YES  |     | NULL    |       |
    | id      | tinyint(4)   | YES  |     | NULL    |       |
    | name    | char(20)     | YES  |     | NULL    |       |
    | num     | char(10)     | YES  |     | NULL    |       |
    | address | varchar(100) | YES  |     | NULL    |       |
    +---------+--------------+------+-----+---------+-------+
    5 rows in set (0.00 sec)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15

    删除列

    mysql> alter table tb1 drop num;
    Query OK, 0 rows affected (0.03 sec)
    Records: 0  Duplicates: 0  Warnings: 0
    
    mysql> desc tb1;
    +---------+--------------+------+-----+---------+-------+
    | Field   | Type         | Null | Key | Default | Extra |
    +---------+--------------+------+-----+---------+-------+
    | age     | int(11)      | YES  |     | NULL    |       |
    | id      | tinyint(4)   | YES  |     | NULL    |       |
    | name    | char(20)     | YES  |     | NULL    |       |
    | address | varchar(100) | YES  |     | NULL    |       |
    +---------+--------------+------+-----+---------+-------+
    4 rows in set (0.00 sec)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    该列名

    mysql> alter table tb1 change id u_id int;
    Query OK, 0 rows affected (0.04 sec)
    Records: 0  Duplicates: 0  Warnings: 0
    
    mysql> desc tb1;
    +---------+--------------+------+-----+---------+-------+
    | Field   | Type         | Null | Key | Default | Extra |
    +---------+--------------+------+-----+---------+-------+
    | age     | int(11)      | YES  |     | NULL    |       |
    | u_id    | int(11)      | YES  |     | NULL    |       |
    | name    | char(20)     | YES  |     | NULL    |       |
    | address | varchar(100) | YES  |     | NULL    |       |
    +---------+--------------+------+-----+---------+-------+
    4 rows in set (0.00 sec)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    该表名

    #方法一
    mysql> alter table tb1 rename table1;
    Query OK, 0 rows affected (0.01 sec)
    
    方法二
    mysql> rename table table1 to table2;
    Query OK, 0 rows affected (0.00 sec)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    复制表结构

    mysql> create table t1 like tb1;
    Query OK, 0 rows affected (0.01 sec)
    
    mysql> desc t1;
    +---------+--------------+------+-----+---------+-------+
    | Field   | Type         | Null | Key | Default | Extra |
    +---------+--------------+------+-----+---------+-------+
    | age     | int(11)      | YES  |     | NULL    |       |
    | u_id    | int(11)      | YES  |     | NULL    |       |
    | name    | char(20)     | YES  |     | NULL    |       |
    | address | varchar(100) | YES  |     | NULL    |       |
    +---------+--------------+------+-----+---------+-------+
    4 rows in set (0.00 sec)
    
    mysql> desc tb1;
    +---------+--------------+------+-----+---------+-------+
    | Field   | Type         | Null | Key | Default | Extra |
    +---------+--------------+------+-----+---------+-------+
    | age     | int(11)      | YES  |     | NULL    |       |
    | u_id    | int(11)      | YES  |     | NULL    |       |
    | name    | char(20)     | YES  |     | NULL    |       |
    | address | varchar(100) | YES  |     | NULL    |       |
    +---------+--------------+------+-----+---------+-------+
    4 rows in set (0.00 sec)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24

    复制变结构(携带表信息)

    mysql> create table t2 
        -> select * from tb2;
    Query OK, 1 row affected (0.41 sec)
    Records: 1  Duplicates: 0  Warnings: 0
    
    mysql> select * from t2;
    +----+------+
    | id | name |
    +----+------+
    |  1 | tom  |
    +----+------+
    1 row in set (0.00 sec)
    
    mysql> select * from tb2;
    +----+------+
    | id | name |
    +----+------+
    |  1 | tom  |
    +----+------+
    1 row in set (0.00 sec)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 全部评论(0)
    • 最新

    信息加载中,请等待

    微信客服(速回)

    微信客服(慢回)



    企业微信客服二维码
    联系我们
    平台客服: 平台QQ客服

    平台电话:400电话迁移中!

    平台邮箱:28292383@qq.com

    工作时间:周一至周五:早10:00 晚:18:00

    营业执照     网站ICP备案:鲁ICP备20027607号-1     鲁公网安备:37068702000078号     增值电信业务经营许可证、在线数据与交易处理业务许可证:鲁B2-20200681      © 2016-2024 站保站  https://www.zhanbaozhan.com/ 版权所有!      平台规范:   关于我们   广告合作   隐私条款   免责声明   法律声明   服务条款   网站地图   平台工单!