# hard_sql **Repository Path**: maishucode/hard_sql ## Basic Information - **Project Name**: hard_sql - **Description**: 硬核SQL教程 - **Primary Language**: SQL - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 7 - **Forks**: 0 - **Created**: 2021-01-10 - **Last Updated**: 2023-01-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 麦叔硬核SQL教程 #### 介绍 麦叔的硬核SQL教程相关资料 #### 软件安装 1. MySQL Server:百度搜索"mysql installer download" 2. MySQL Workbench:百度搜索"mysql workbench download" 3. 在麦叔的高速镜像下载:https://blog.qingke.me/post/10 这是麦叔自己付费购买的云端流量,如果从这里下载,记得给麦叔点赞。 #### Lesson 3 掌握几个MySQL命令 1. 连接到MySQL服务器:mysql -u<用户名> -p<用户名> 2. 创建数据库:create database hard_sql; 3. 删除数据库:drop database hard_sql; 4. 使用数据库:use hard_sql; #### Lesson 4 在hard_sql数据库中创建3张条: 1. buyer 2. product 3. record ![](https://gitee.com/maishucode/pic/raw/master/2021-1-10/1610253013609-image.png) ![](https://gitee.com/maishucode/pic/raw/master/2021-1-10/1610252996367-image.png) 完整的建表语句在本库的**ddl.sql**中 #### 其他 1. 暂无