show databases;--显示数据库
use test;
show tables;显示test数据库下的所有表show tables from mysql;--显示mysql数据库下的所有表
select database();--当前所在数据库
--创建表
create table stuinfo(id int,name varchar(20));desc stuinfo;--查看表结构
select version();--查看MySQL版本
本文共 283 字,大约阅读时间需要 1 分钟。
show databases;--显示数据库
use test;
show tables;显示test数据库下的所有表show tables from mysql;--显示mysql数据库下的所有表
select database();--当前所在数据库
--创建表
create table stuinfo(id int,name varchar(20));desc stuinfo;--查看表结构
select version();--查看MySQL版本
转载于:https://www.cnblogs.com/zhyue93/p/MySQL2.html