SQL语句
模糊查询select * from 表where 列like '开头%' 或 '%结尾';内连接方法一select 需要显示的列from A表 , B表 , C表 ···where A表的列 = B表的列 and B表的列 = C表的列 and ··· and 条件;方法二select 需要显示的列from A表 inner join B表 on A表的列 = B表的列inner join C表 on B表的列 = C表的列 and 条件where 条件;去重dist
原创
2022-03-07 13:35:44 ·
290 阅读 ·
0 评论