本文介绍了用列中的存在的旧值替换新值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
select convert(varchar,tournamentID='STT') from tblTournaments
无论TournamentID列值是什么,在其中我都想将其替换为"STT"名称...!
请正确处理我的问题...!
注意:-不想使用REPLACE关键字.只想添加运行时值.
如果我写
从tblTournaments中选择TournamentID ="STT''
它运行,但上层查询不起作用!
我想要这个输出..!
whatever is TournamentID column values, in it i want to replace them with ''STT'' name...!
please do right my queary...!
Note:- don''t want to use REPLACE Keyword..! want to add only run time values.
if i write
select tournamentID=''STT'' from tblTournaments
its run but upper queary not working!
i want to like this output..!
TournamentID
STT
STT
STT
STT
STT
STT
问候
Dnyanesh Wahiley
Regards
Dnyanesh Wahiley
推荐答案
这篇关于用列中的存在的旧值替换新值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!