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.
SELECT NPA , NXX, char(ascii(BlockId)+1) AS BlockID
INTO #tmp
FROM #TmpLergConvert t1
WHERE not exists (SELECT 1 FROM #TmpLergConvert t2
WHERE t2.NPA = t1.NPA
AND t2.NXX = t1.NXX
AND ascii(t2.Blockid)+1 = ascii(t1.Blockid))
AND t1.Blockid < '9' and t1.BlockId <> 'A'