mysql in 加引号
2021/7/27 19:35:48
本文主要是介绍mysql in 加引号,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
场景:
访问地址:http://xxx.com/index.php?m=home&c=demo&a=test&keyword=3B9D082D,3B9D082A,3B9D0903,3B9D082C
把接收到参数(keyword),在sql查询中,使用in会自动加上引号
php应用代码:
$param = $this->param(); $keyword = $param['keyword']; $sql = "SELECT * from mes_goods_warehouse_lists WHERE FIND_IN_SET(barcode,'{$keyword}')"; $res = Db::query($sql); print_r($res);
原始sql代码:
SELECT * from mes_goods_warehouse_lists WHERE FIND_IN_SET(barcode,'3B9D082D,3B9D082A'); // 相当于下面代码
SELECT * from mes_goods_warehouse_lists WHERE barcode in('3B9D082D','3B0D082A')
这篇关于mysql in 加引号的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-04部署MySQL集群项目实战:新手入门教程
- 2024-11-04如何部署MySQL集群资料:新手入门指南
- 2024-11-02MySQL集群项目实战:新手入门指南
- 2024-11-02初学者指南:部署MySQL集群资料
- 2024-11-01部署MySQL集群教程:新手入门指南
- 2024-11-01如何部署MySQL集群:新手入门教程
- 2024-11-01部署MySQL集群学习:新手入门教程
- 2024-11-01部署MySQL集群入门:新手必读指南
- 2024-10-23BinLog入门:新手必读的MySQL二进制日志指南
- 2024-10-23Binlog入门:MySQL数据库的日志管理指南