Mysql基础
2021/8/5 2:07:54
本文主要是介绍Mysql基础,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
-
DDL:数据定义语言
-
数据库
-
create database if not exists bigdata_61; 创建数据库
-
show databases; 查看有哪些数据库
-
use bigdata_61;使用数据库
-
select database(); 查看正在使用的数据库
-
drop database bigdata_61;删除数据库
-
-
表
-
create table student(id int,name varchar(20)); 创建表
-
show tables; 查看有哪些表
-
desc student;查看表结构
-
drop table student;删除表
-
-
表结构
-
alter table student add age int;
-
alter table student change name address_name varchar(200);
-
alter table student drop address_name;
-
rename table student to stu;
-
-
这篇关于Mysql基础的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-15MySQL教程:初学者必备的MySQL数据库入门指南
- 2024-11-15MySQL教程:初学者必看的MySQL入门指南
- 2024-11-04部署MySQL集群项目实战:新手入门教程
- 2024-11-04如何部署MySQL集群资料:新手入门指南
- 2024-11-02MySQL集群项目实战:新手入门指南
- 2024-11-02初学者指南:部署MySQL集群资料
- 2024-11-01部署MySQL集群教程:新手入门指南
- 2024-11-01如何部署MySQL集群:新手入门教程
- 2024-11-01部署MySQL集群学习:新手入门教程
- 2024-11-01部署MySQL集群入门:新手必读指南