时间:2021-07-01 10:21:17 帮助过:3人阅读
mysql admin -u root -p password newpwd连接数据库
mysql -u root -p mysql -u root -p root连接远程主机mysql
mysql -h 主机地址 -u 用户名 -p 用户密码创建数据库
create database mydb;设置字符集
alter database mydb default character set = utf8;显示数据库列表
show databases;切换到某个database
use mydb;
显示本库中的所有表
show tables;
显示某表(table1)的结构
describe table1;
建库
create database
建表
create table tableName (字段设定列表);
删库
drop database 库名;
删表
drap table 表名;
将表中的记录清空
delete from 表名;
为已经存在的表添加新列
alter table tableName add newColumn varchar(8) comment ‘新添加的字段‘ // comment为注释,就像在java中//作用是一样的。
为列设定默认值
create table tablename (columnname datatype default defaultvalue); // 新建并设置默认值 alter table tablename alter column columnname set default defaultvalue; // 修改现有列的默认值
删除列
alter table tableName drop column Gatewayid
数据库开发 MySQL
标签: