查询从circle
,subscriber Type
,subscriber sub type
,Device Type
和RES
状态为“Y”的组合中选择所有电话号码。
选择circle
,subscriber Type
,subscriber sub type
,Device Type
的组合,RES
状态为“Y”
假设一个表包含如图所示的数据
这只是一个样本
如何在其他列的不同组合中找到所有电话号码
作为Subscriber type
,Subscriber Sub type
,Device Type
,RES
(预付,消费者,移动,y)?
答案 0 :(得分:0)
如果我正确理解了这个问题,你可以写一个简单的SELECT
查询来获取这些,例如:
SELECT phone_number subscriber_type, subscriber_sub_type, device_type
FROM table
WHERE res = 'y';