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基础的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程