select * from stock_move_line where id = any('{5447,5448}');
  • any 这种写法一般多用于函数中,比如将某个字段的值拆分为列表
  • 感觉这种语法完全可以用in来代替.

相关文章: