Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我应该建立我的 BQL 语句来复制它
SELECT * FROM TABLE1 WHERE TABLE1.COL1 = 'X' AND (TABLE1.COL2 = 'Y' OR TABLE1.COL2 is null)
谢谢!
PXSelect<TABLE1, Where<TABLE1.col1, Equal<X>, And<Where<TABLE1.col2, Equal<Y>, Or<TABLE1.col2, IsNull>>>>>