Your issue is probably the +
. This only does string concatenation in SQL Server and related databases.
This may do what you want:
UPDATE cursos c
SET c.SYLLABUS = CONCAT('https://www.upv.es/pls/oalu/sic_asi.Busca_Asi?P_VISTA=&P_IDIOMA=i?p_codi=',
c.CODE, '&p_caca=act')
WHERE c.SYLLABUS = '' AND c.CENTER NOT LIKE 'Study Abroad';
manpreet
Best Answer
2 years ago
I'm com/tag/try">trying to update a field called "Syllabus" using this SQL query:
But I'm getting this weird error saying I'm com/tag/try">trying to input a DOUBLE com/tag/value">value on line 2 whenever I com/tag/try">try to execute it. Any suggestions on how I could fix this problem?