1 Star 0 Fork 14

Joe/ant-learn-python-100P

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
p053_hand_create_mysql_db_table.py 460 Bytes
一键复制 编辑 原始数据 按行查看 历史
peiss 提交于 2021-08-05 22:41 +08:00 . 新建数据库和数据表
# 本节视频没有代码,只有SQL语句
# 如下SQL语句,创建了数据库,和一个数据表
"""
create database db_school;
use db_school;
create table student_grade(
id int(11) auto_increment comment '自增ID',
quarter char(10) comment '考试的季度',
sno char(10) comment '学号',
course char(10) comment '课程',
grade double comment '成绩',
primary key (id)
) charset=utf8 comment '学生成绩表';
"""
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/stayhungry2022/ant-learn-python-100P.git
git@gitee.com:stayhungry2022/ant-learn-python-100P.git
stayhungry2022
ant-learn-python-100P
ant-learn-python-100P
master

搜索帮助