mysql 简单sql语句

Posted taoing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 简单sql语句相关的知识,希望对你有一定的参考价值。

1.修改数据库的编码            alter database test character set utf8

 

2.创建新表    :

create table  text4(id int(10) not null primary key auto_increment,username varchar(10),pwd char(32) )

其中:primary key     主键,  auto_increment   自增 .

 

3.添加字段     [即修改alter 表]

alter add命令格式:alter table 表名 add字段 类型 其他;
例如,在表MyClass中添加了一个字段passtest,类型为int(4),默认值为0:
mysql> alter table MyClass add passtest int(4) default ‘0’;

 

4.建表时,建立分区

1)range 分区

create

 



以上是关于mysql 简单sql语句的主要内容,如果未能解决你的问题,请参考以下文章

如何记录MySQL执行过的SQL语句

MySQL语句优化方法(简单版)

如何查找MySQL中查询慢的SQL语句

如何查找MySQL中查询慢的SQL语句

mysql 简单sql语句

如何查找MySQL中查询慢的SQL语句