1
0
forked from x/ContextOS
2019-04-21 13:41:31 +08:00

816 B

简介

MySQL 是一个开源的关系型数据库管理系统。

基础命令

存储引擎

变量的定义与引用: https://www.cnblogs.com/EasonJim/p/7966918.html

show engines show engine innodb status show variables

show databases create database demo drop database demo use demo

show tables create table t(a int unsigned not null, b char(10), primary key(a)) drop table t

select * from t; insert into t values() update t set b='1234' delete from t