我有一个呼叫中心的数据库。我的要求是只选择打电话的人(92222、122323、9988898)。
请你帮我写一个查询。
由于您没有向我们提供任何架构详细信息,因此没有太多信息可以继续,但它可能类似于:
select p.person
from people p,
calls c
where p.person_id = c.person_id
and c.call_target in ('92222', '122323', '9988898')
这将适用于以下最小模式:
people:
person_id primary key
person
calls:
person_id references people(person_id)
call_target
根据架构的复杂程度,您需要的查询可能会完全不同,但这应该是一个很好的起点。
select all_people from call_centerDB where called_nos=92222 OR called_nos=122323 OR called_nos=9988898
试试这个
select * from tbl_call_center where called_no IN (92222, 122323, 9988898)