Hi ,
i wanted to increase value of my max Alphanumeric field.
i searched here i found in link that Select Char(1 + Ascii('A'))
so i use it in my table.
select top 1 Char(1 + Ascii( left(opr_sec,1))) from model_oper where model_num=32 and opr_sec is not null group by left(opr_sec,1) order by left(opr_sec,1) desc
i have a question is it possible to increase just between [0-9] and [A-Z] . i dont wanna use :,Ñ,.etc
thank you.
i wanted to increase value of my max Alphanumeric field.
i searched here i found in link that Select Char(1 + Ascii('A'))
so i use it in my table.
select top 1 Char(1 + Ascii( left(opr_sec,1))) from model_oper where model_num=32 and opr_sec is not null group by left(opr_sec,1) order by left(opr_sec,1) desc
i have a question is it possible to increase just between [0-9] and [A-Z] . i dont wanna use :,Ñ,.etc
thank you.