mysql 学习

Posted 飞龙dragon

tags:

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

查看有哪些DataBases: show databases;

添加DB:    create database gc;   //gc为要添加的数据库

删除DB:   drop databa

创建数据表table

create table table_name{
    colum_name data_type,  //colum_name是列名  data_type是数据类型
    colum_name data_type,
    .
    .
    .
    colum_name data_type,
};

示例:

create table 

 

以上是关于mysql 学习的主要内容,如果未能解决你的问题,请参考以下文章

IOS开发-OC学习-常用功能代码片段整理

java SpringRetry学习的代码片段

python 机器学习有用的代码片段

从mysql的片段中加载ListView

学习笔记:python3,代码片段(2017)

连接MySQL出现错误:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)(代码片段