mysql --comments -h 127.0.0.1 -P 14000 -u root # Welcome to the MariaDB monitor. Commands end with ; or \g. # Your MySQL connection id is 677 # Server version: 5.7.25-TiDB-v7.1.1 TiDB Server (Apache License 2.0) Community Edition, MySQL 5.7 compatible # # Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. # # Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. # # MySQL [(none)]>
创建一个表
1 2
use test; createtable hello_world (id int unsigned notnull auto_increment primary key, v varchar(32));