mysql/mariadb常用语句----表
Posted 吾乃世间奇才
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql/mariadb常用语句----表相关的知识,希望对你有一定的参考价值。
创建表
create table orders(
id int NOT NULL AUTO_INCREMENT,
name char NOT NULL,
passwd char(16) NOT NULL DEFAULT '!@#$%',
primary key(id)
)engine=innodb, character set=utf8;
查看表信息
show columns from orders;
以上是关于mysql/mariadb常用语句----表的主要内容,如果未能解决你的问题,请参考以下文章
mysql/mariadb知识点总结 之 insertdeleleupdate AND select 语句总结