我试图在Preparedstatement中参数化值,如下所示
PreparedStatement ps = Connection.prepareStatement("select col_a,? from TABLE_A");
ps.setString(1,"myValue");
ps.execute();
我想要以下回复
COL_A myValue
-----------------
val1 myValue
val2 myValue
可与下面的普通sql相媲美。
select col_a,'myValue'
from TABLE_A