MYSQL 简单的建库操作代码

Posted 程昱仲德

tags:

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

一、查询所有数据库

代码:show databases;

成功后如下图:

二、建立一个数据库

代码:create database test3;

成功后如下图:

三、连接数据库

代码:use test3;

成功后如下图:

 

四、建立库表

代码:create table test{

id int not null primary key auto_increment,

name varchar(30) not null

};

成功后显示:

 

 五、显示表结构

代码:desc test;

成功后显示:

六、添加表内容

代码:insert into test (`name`)values(\'test\');

成功后显示:

七、查询表内容

代码:select * from test;

成功后显示:

八、修改表内容

代码:update test set name = \'test2\';

成功后显示:

九、删除表内容

代码:delete from test;

成功后显示:

十、添加表字段

代码:alter table test add password varchar(30) not null;

成功后显示:

十一、修改表字段名

代码:alter table test change name username varchar(50) not null;

成功后显示:

 

 十二、修改表字段类型

代码:alter table test modify username char(30) not null;

成功后显示:

十三、删除表字段

代码:alter table test drop username;

成功后显示:

十四、删除数据库表

代码:drop table test;

成功后显示:

十五、删除数据库

代码:drop databases test3;

成功后显示:

十六:关闭数据库

代码:exit;

 成功后退出命令行关闭。

 

以上是关于MYSQL 简单的建库操作代码的主要内容,如果未能解决你的问题,请参考以下文章

操作mysql(图形界面) 建库建表

mysql建库建表及连接数据库操作

mysql简单命令行操作以及环境变量的配置

MySQL数据库系列一认识数据库建库建表操作

Windows系统CMD窗口下,MySQL建库还原数据库命令操作示例

PHP : MySQLi面向过程操作数据库 连接建库建表增删改查关闭