💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 数据操作 ## 插入数据 insert into student(字段列表) values (值列表); insert into student values (值列表); 值的顺序和字段列表一致 ## 删除数据 delete from 表名 条件 `delete from student where id<10` ## 修改数据 update 表名 set 字段=值,字段=值 条件 `update student set score=100 where score>60;` ## 查询数据 *表示全部字段 select 字段列表 from 表名 查询条件 `select * from student where 1;`