这个sql语句是指从数据库表里面拼接组合goods_sn,goods_title,goods_brief,goods_name 有包含tablet字段的数据。等价于goods_sn||goods_title||goods_brief||goods_name LIKE '%tablet%。
concat 等同于字符串连接符 ||,concat(字串1, 字串2, 字串3, ...),将字串1、字串2、字串3,等字串连在一起。
扩展资料:
MySQL,Oracle,SQL Server拼接字符串查询示例:
例子1:
MySQL:
SELECT CONCAT(region_name,store_name) FROM Geography WHERE store_name = 'Boston'
例子2:
Oracle:
SELECT region_name || ' ' || store_name FROM Geography WHERE store_name = 'Boston'
例子3:
SQL Server:
SELECT region_name + ' ' + store_name FROM Geography WHERE store_name = 'Boston'
参考资料:MySQL字符串连接CONCAT()函数_W3Cschool
用法:字符串拼接:m.table_Name like concat(concat('%',#{tableName}),'%')----------------------就是拼接成% 变量值%
select * from m where m.name like concat(concat('%','#tableName'),'%');
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)