数据库基础操作-part2

单表和多表查询 单表查询 记录详细操作: 增 insert into t1(字段1, 字段2, 字段3) values (值1, 值2, 值3), (值1, 值2, 值3), (值1, 值2, 值3); 改 update t1 set 字段1 = 值1, 字段2 = 值2, where 条件; 删除

你可能感兴趣的:(数据库基础操作-part2)