一、常见的增删改查 二、约束(五种) 三、聚合查询
1、聚合函数 2、group by 和 having 3、联合查询 案例表:
drop table if exists classes;
create table classes (id int primary key auto_increment,name varchar(20)
);
insert into …
一、Web Serial API介绍 Web Serial API 是一项 Web 技术,用于在浏览器中访问串行端口设备(如 Arduino、传感器等)并与之通信。它提供了一组 JavaScript 接口,使得 Web 应用程序可以通过 USB 串行端口连接到硬件设备&…