如何在Jmeter JDBC Sampler中将随机变量与字符'%'结合使用?

时间:2018-08-14 08:15:20

标签: postgresql jmeter jmeter-plugins

我正在尝试在Jmeter中进行工作负载测试。 这是Postgresql,我想将随机变量与'%'组合在一起。

您能帮我进行SQL查询的方法吗?

enter image description here

我已经尝试使用'?%',但是出现错误“列索引超出范围:1,列数:0。”。

1 个答案:

答案 0 :(得分:0)

最简单的方法是切换到Select Statement并将查询修改为:

SELECT * FROM scloud_usr.tcus_usr_rgn where UID like '${__RandomString(3,ABD,UID)}%'

如果要继续使用Prepared Select Statement,则需要将此%通配符添加到参数值本身中,而不是在查询中,即

JMeter Prepared Statement Wildcard

更多信息: