基本sql语句
Posted 王非雨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基本sql语句相关的知识,希望对你有一定的参考价值。
库
1. 创建库
create
database
test;
2.#指定字符集(mysql 5.0 以上)
create
database
redmine
character
set
utf8;
3#验证show
create
database
redmine\G;
*************************** 1. row ***************************
Database: redmine
Create Database: CREATE DATABASE `redmine` /*!40100 DEFAULT CHARACTER SET utf8 */
1 row in set (0.00 sec)
2. 删除库drop
database
test;
3. 列出全部的库
show databases;
表
1. 创建表
create
table
test (c1
int
(10),c2
int
(10), c3
int
(10),c4
char
(10));
2. 表结构
desc
test;
show
create
table
test;
3. 删除表
drop
table
test;
4. 列出当前库全部表
show tables;
5. 备份表(20160310)create table reply_bak
select
* from reply;
这种方法会将旧表中所有的内容都拷贝过来,这种方法的一个最不好的地方就是新表中没有旧表的primary key、Extra(auto_increment)等属性。需要自己用alter,添加,而且容易搞错。
以上是关于基本sql语句的主要内容,如果未能解决你的问题,请参考以下文章