我是 SQL 新手,我正在尝试使用另一列中的值创建一个新列。
我正在使用这样的东西。
Select
a.idclientecrm,
(case
when a.titulo like '%Mensual' then 'Mensual'
when a.titulo like '%Trimestral' then 'Trimestral'
when a.titulo like '%Semestral' then 'Semestral'
when a.titulo like '%Anual' then 'Anual'
else null
end) as Periodo_Producto
from tareas a
当我在a.titulo中找到Mensual一词时,我需要在新列中使用“Mensual”一词,依此类推,以用于每个不同的时间段(triestral、semestral和anual)。
“喜欢”部分似乎不起作用,我也尝试过包含但我也无法使其工作。
希望可以理解。