mysql 常用命令
Posted ximi007
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 常用命令相关的知识,希望对你有一定的参考价值。
一、---------数据库---------
1、创建数据库并设置字符集
eg: create database wl_rent_car(数据库名) default character set utf8(字符集) COLLATE utf8_general_ci(排序规则);
2、查看数据库中表的数量
select count(*) from information_schema.tables where TABLE_SCHEMA = ‘wl_rent_car‘(数据库名);
二、---------表---------
1、添加字段
alter table 表名 add column 字段名 类型 默认值;
eg:alter table art_car add column isForward int(1) default 0;
2、查看表结构
desc 表名
以上是关于mysql 常用命令的主要内容,如果未能解决你的问题,请参考以下文章