This query brings back 31000 rows in 5 minutes... Does ANYONE know how I can get a faster response back by tweaking the SQL??? We've indexed the tables also.
SELECT BORG.CUSTOMER.CUSTOMER_LAST_NAME,
BORG.CUSTOMER.CUSTOMER_FIRST_NAME,
BORG.CUSTOMER.LICENSE...
select number from ems.technician t
where last_name = 'Bosch' [the result is 056649129]
to change it to 056-64-9129...
update ems.technician t
set t.number = (%%% + '-' + %% + '-' + %%%%) where last_name = 'Bosch'
?????
What am I doing wrong? If I could only import it from the text file I...
Its been a good while since I've written SQL and I need to update a column of SSN that do not have dashes to contain dashes. The field is a varchar so I need to go from '123456789' to '123-45-6789'. Any help greatly appreciated!!!
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.