SPL 中怎么解决序表在另一种表的出现条数少于 3 条?
类似这种 sql 怎么使用 SPL 实现?
select * from B b where 1=1 and (select count(1) from A a where a.acnkey = b.no and a.state = ‘1’)< 3
"类似这种 sql 怎么使用 SPL 实现? select * from B b where 1=1 and (select count(1) from A a where a.acnkey = .."
类似这种 sql 怎么使用 SPL 实现?
select * from B b where 1=1 and (select count(1) from A a where a.acnkey = b.no and a.state = ‘1’)< 3
=joinx@f(B:b,no;A:a,acnkey).group(b;~.len()<3).select(#1 && #2).(b)
按自然思维写就行了,就是个条件而已
b.select(a.count( a…==b… && …)<3 )