时间:2021-07-01 10:21:17 帮助过:16人阅读
show databases; //展示有哪些数据库
use test; //use +数据库名,进入数据库
show tables; //显示库里的表
show tables from mysql; //show tables from +库名,查看指定库内的表,查看时并不会离开当前库,或者用前两种方式use进入后show,
select database(); //查看当前所在哪个库
创建表:
create table hellowrold( //create table 后指定表名
id int, //指定列名和类型还要指定其他列名时用,号分隔
name varchar(20)); //varchar(20); 长度为20的字符串类型
desc hellowrold; //desc +表名显示表的框架等详细数据
select from hellowrold; //select from +表名,查看表内数据
insert into hello(id,name) values(1,"me"); //插入数据到表头,insert into +表名(列名,列名) values(赋值,赋值);
mysql基本命令
标签:arch wro 哪些 展示 mys 字符串 tables esc 框架