当我进行此选择时,结果显示所有“车辙”及其电话号码,我的问题是每个“车辙”有近 10 个电话号码,每个“车辙”只需要 3 个电话号码,我尝试使用 TOP,但只显示所有表的前 3 行,而不是“车辙”的第一行,我怎样才能将 TOP 仅用于“车辙”行,而不是在所有表中
Select Distinct
t1.rut_cliente as rut_cliente,
t1.nro_fono as numero
--Into #tmp_numeros
From dat_clientes_sucursales_contactos_telefonos t1,dat_rut_clientes t2
where t1.rut_cliente = t2.rut_cliente
and cod_prioridad = 1
这就是我通过这个查询得到的:
Rut_cliente Nro_fono
60506000-5 2046840
60506000-5 3507935
60506000-5 4106886
60506000-5 5440000
60506000-5 5445000
81698900-0 2373281
81698900-0 3541342
81698900-0 3541438
81698900-0 3541518
81698900-0 3542101
这就是我想要的:
Rut_cliente Nro_fono
60506000-5 2046840
60506000-5 3507935
60506000-5 4106886
81698900-0 2373281
81698900-0 3541342
81698900-0 3541438
提前致谢。