简体   繁体   中英

SQL: How do do where statement Where X OR Y is equal to &SUBSTITUTION VALUE

x or y = &substitution_Value. doing where x=&subvalue or y=&subvalue requires a repeat in the input which i want to avoid

您可以使用IN运算符: WHERE &subvalue IN(x, y)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM