摘要:
模糊查询:where mc like '值':返回值等同于where mc ='值'where mc like '%值':匹配 名称是 '*值'(以“值”作为结尾)的所有数据,*表示任何值任何长度;wheremc like '%值%':返回所有包含【值】的所有数据。where mc like '值1... 阅读全文
摘要:
测试表数据如下:sql:select * from zhubiaofushu where id in (select fid from zhubiao)select * from zhubiao t inner join zhubiaofushu t1on t.fid= t1.idselect ... 阅读全文