79371628

Date: 2025-01-20 14:28:54
Score: 1.5
Natty:
Report link

You could do it like this:

update table_name
set column =  STUFF(column,3, 0, '12-')
where column LIKE 'A-[0-9][0-9][0-9][0-9][0-9]';
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Robert van Ierland