原始查询语句:select * from icp where '域名' like '%baidu%' 问题:列名 ‘域名’ 使用单引号,被解析为字符串字面量,而不是列名,导致查询失败。修正:select * from icp where "域名" like '%knownsec%';