SQL笔记
删除
DELETE FROM 表名称 WHERE 列名称 = 值
查询
多表联查
select r.id,d.dq,r.num,r.rq,r.tj from yqry r,yqdq d where d.id=r.id;
select * from A 别名1,B 别名2 where 别名1.xx=别名2.xx;
<select id="select" resultType="Info">
select * from appinfo
<where>
原创
2021-12-27 11:44:35 ·
274 阅读 ·
0 评论