MySQL 的多表查询

表的数据准备 create table score (   id    int auto_increment        primary key,   grade int          null,    code  varchar(100) null )    charset =

mysql 

Mysql基础

SQL通用语法: 1.SQL语句口可以单行或多行书写,以分号结尾 2.SQL语句可以使用空格/缩进来增强语句的可读性 3.MySQL数据库的SQL语句不区分大小写,关键字建议使用大写

mysql