Good morning I wanted to know if you can help with the next query I want to concatenate an NVARCHAR field with a DATETIME this is my code
SELECT CONVERT (NVARCHAR(10), u.COMPROBANT)+' '+'del '+ CONVERT(VARCHAR(10),u.FECHA_TRS, 103) AS 'Comprobante #',m.COMPROBANT FROM
MOVIM AS m
LEFT JOIN ARTICULO AS a ON a.COD_ART = m.COD_ART
LEFT JOIN BODEGA AS b ON b.COD_BODEGA = m.COD_BODEGA
LEFT JOIN T_UNI AS tu ON tu.COD_UNI = a.COD_UNI
LEFT JOIN USOMAT AS u ON u.COMPROBANT = m.COMPROBANT WHERE u.FECHA_TRS IS NULL
but the result is that it does not concatenate me but sends me all NULL as it shows in the image