Chinese(Simplified)(简体中文)
VSCode 中文 Error Lens
代码基础报错提示, 必备 HTML CSS Support
html 和 css 支持, 提示
Auto Close Tag
自动补全 html 标签
Auto Rename Tag
修改 html 标签,自动帮你完成尾部闭合标签…
testa表(字段a)aaabbacccddddddaaatestb表(字段b)ab1. 使用likeconcat模糊配对
selecta.a
from testa a ,testb b
where a like concat(%,b.b,%)
group by a.a2. 使用locate函数
selecta.a
from testa a ,testb b
where locate(b.b,a.a)>0
group by a.a3. 使用instr函数
sel…