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.
我正在尝试编写正确的 sql 查询来查找一列中的范围,该范围只会返回另一列中的真实值。
前任。西南地区 10 - 20 的哪些产品通过了 ISO 认证?
假设您的表包含 Id、Product、Region、ISO 列
SELECT p.Product FROM TableName WHERE Region BETWEEN 10 AND 20 AND ISO=True