摘要: 一、简单单表操作 (1)简单CRUD 插入查询结果 insert into table1(id,name,age) select id,name,age from table2 where id=1 更新操作 update 表名 set 字段名=’abc’where id=xxx; 避免重复数据查询 阅读全文
posted @ 2017-10-02 15:09 纪煜楷 阅读(961) 评论(0) 推荐(0) 编辑