We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
如果要对SQL做各种统计,通常需要对SQL进行参数化再做统计。比如:
// 原始SQL select * from t where id = 1 select * from t where id = 2 // 参数化SQL select * from t where id = ?