系统城装机大师 - 固镇县祥瑞电脑科技销售部宣传站!

当前位置:首页 > 系统教程 > 其它教程 > 详细页面

mysqld/mariadb常用语句

时间:2020-02-20来源:系统城作者:电脑系统城

create database if not exists hidb; #创建库,如果此库不存在
show warnings; #查看db最近一次的告警
alter database hidb character set 'utf-8'; #设置数据库字符集
drop database testdb; #删除库
show databases like '%db'; #查询以db结尾的数据库信息
help show databases; #帮助

create table tbl2 (id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE KEY,name VARCHAR(60) NOT NULL); #创建表结构

create table tbl2 (id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT ,name VARCHAR(60) NOT NULL,UNIQUE KEY(id,name)); #创建表结构

help desc; #帮助
describe city; #查询表结构
DESC tbl2; #查询表结构

show engines; #查看支持的引擎
show table status; #查看所有表状态信息
show table status like 'tablename'\G; #查看单表状态信息
show table status where name like 'table'; #查看以table开头的表
show table status where Engine='MyISAM'; #查询引擎为MyISAM的表状态
alter table tbl3 ADD gender ENUM('F','M'); #修改表结构,新增枚举字段
alter table tbl3 CHANGE id stuid SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY; #修改字段名 id 为 stuid
alter table tbl3 ADD INDEX (name); #创建索引
show INDEXES from tbl3; #查看表中的所有索引
alter table tbl3 drop index id; #删除id字段的索引
alter table tbl3 drop primary key id; #删除id字段的主键
create table tbl4 like mysql.user; #创建tbl4表,从mysql.user复制表结构
create table tbl5 select host,user,passwd from mysql.user; #查询mysql.user表中的字段及内容,放到新创建的表中
create index indexname on tabl5(id); #创建索引

分享到:

相关信息

  • ThinkPad蓝牙鼠标如何配对

    ThinkPad蓝牙鼠标如何配对解答步骤41U5008鼠标驱动官网地址: https://support.lenovo.com/en_US/downloads/detail.page?&LegacyDocID=MIGR-67201 第一种方式是比较传统的:使...

    2024-04-11

  • USB接口无法识别设备的解决方法

    故障现象: USB设备U盘、移动硬盘等插入后提示无法识别的设备,确认设备本身正常,设备可加电,或插入设备后加电但无任何反应,无法使用。新型号机器多表现为黄色USB接口存在此问题,...

    2024-04-11

系统教程栏目

栏目热门教程

人气教程排行

站长推荐

热门系统下载