I need to query against a column which contains build numbers stored as an NVARCHAR.<BR>Sorting works fine until you get into double-digit versions.<BR><BR>This works ...
-- 1) Create raw table to hold incoming PAN values CREATE TABLE IF NOT EXISTS sgt_pan_numbers_dataset ( pan_number text ); -- 2) (Optional) Insert some test rows to try the logic quickly -- You can ...