Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
declare @y varchar(100)
select @y = '12099023434ghfkjlhjAADF++++&&@#(*$<>>>"":''''MKFND'
while patindex('%[^0-Z]%',@y) > 0
begin
select @y = substring(@y, 1, patindex('%[^0-Z]%',@y) - 1) + substring(@y, patindex('%[^0-Z]%',@y) + 1, len(@y))
end
select @y
create table #t (
num int,
ch char(1)
)
declare @c int
set @c = 0
while @c<256 begin
insert into #t
select @c, Char(@c)
set @c=@c+1
end
select *
from #t
where ch like '[ -÷]'
drop table #t