码迷,mamicode.com
首页 > 其他好文 > 详细

城市识别,提交不上来原因

时间:2019-10-05 16:52:52      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:int   top   res   put   系统   setting   mon   必须   code   

 
    城市识别,提交不上来原因
 
declare @province nvarchar (50)
declare @city nvarchar (50)
declare @yys int
exec [feephone]. [get_phone_address]
                 ‘17753123809‘,
                @province output,
                @city output,
                @yys OUTPUT
print @province
print @city
print @yys
 
declare @ret int
exec [feephone]. [check_can_charge]
                 ‘15023368230‘,
                 ‘山东‘,
                2 ,
                @ret OUTPUT,
                50 ,
                 null,
                 null
print @ret
select * from dbo .owner_Card_Stock a inner join
                 dbo .Setting_Yys_CanChargeMoney b on a.cardmoney =b. cardmoney and a .cardflag= b.cardflag
                 where b. yys=and b. isenable=1 and (( b.ismatch =1 and 10=b .cardmoney)
                 or( b. ismatch=0 and 10>= b.cardmoney ))
                
select ISNULL (SUM( [count]),0 ) from dbo.owner_Card_Stock a inner join
                 dbo .Setting_Yys_CanChargeMoney b on a.cardmoney =b. cardmoney and a .cardflag= b.cardflag
                 where b. yys=and b. isenable=1 and (( b.ismatch =1 and 10=b .cardmoney)
                 or( b. ismatch=0 and 10>= b.cardmoney ))
select * from dbo .Setting_Yys_CanChargeMoney  where Yys=1 and isEnable= 1
select * from dbo .owner_Card_Stock  where CardFlag=‘chinaunicom‘
select * from dbo .owner_Card_Stock  where CardFlag=‘chinatelecom‘
select top 100 * from dbo. Owner_Card where CardFlag =‘chinatelecom‘ and State =0 and CardMoney=30
update dbo. Setting_Yys_CanChargeMoney  set IsMatch =1 where Yys=1 and isEnable= 1 and CardMoney<50
--delete from dbo.Setting_Yys_CanChargeMoney where ID=25
--insert into dbo.Setting_Yys_CanChargeMoney values(0,‘chinaszx‘,10,1,1)
select * from feephone .[log_checkcancharge_fail] with (nolock) where phone =‘17753123809‘  order by id desc
select * from [dbo] .[view_YYS_PhoneProvince] where yys=0 and phoneprovince like ‘%重庆%‘
select top 10 * from do_phone with (nolock) where OrderTime <‘20141112‘
select top 100 * from do_phone where yys=2 and WantMoney= 30 and from_channel =‘phoneinterface‘ order by id desc
 
--号码系统增加城市识别,提交不上来
--有些渠道是必须要增加城市识别的如phoneinterface,其他的需不需要要城市识别不一定
--有的渠道 在提交号码前 会调用 [feephone].[check_can_charge] 这个存储过程,校验能不能充,有些渠道是不校验的.
select top (5000) * from do_phone with (nolock) where Province like ‘%‘ and
CityAreaCode=‘‘ and state=0 and isfinal= 0
 
--用的存储过程:
[feephone].[check_can_charge]
[feephone].[get_phone_address]
--用的表---feephone.setting_phone_seg 表
--18513173592 这个号码帮忙系统增加下识别的哈
 
select province, city from feephone .setting_phone_seg where left(phoneseg ,7)= ‘1851379‘;
select top 100 * from do_phone with (nolock) where left(Phone, 7)=‘1852257‘ and from_channel =‘phoneinterface‘ order by id desc
 
select  province, city from feephone .setting_phone_seg where phoneseg=‘1851317‘
select * from feephone .setting_phone_seg with (nolock) where phoneseg =‘1851317‘
update  feephone. setting_phone_seg  set city =‘北京‘  where phoneseg= ‘1851317‘
 
--增加城市识别,提交不上来
select top (10) * from feephone. setting_phone_seg with( nolock) where phoneseg= ‘1852133‘
select province, city from feephone .setting_phone_seg where left(phoneseg ,7)= ‘1852133‘;
--update feephone.setting_phone_seg set city=‘上海‘ where phoneseg=‘1852133‘ and city=‘‘
 
 
 
 
 

城市识别,提交不上来原因

标签:int   top   res   put   系统   setting   mon   必须   code   

原文地址:https://www.cnblogs.com/ComputerVip/p/11624736.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!