fix: use CONCAT for NULL-safe underlying name in cedlab_Chart_UnderlyingOnly
This commit is contained in:
@@ -41,7 +41,7 @@ BEGIN
|
|||||||
p.Px_open IS NOT NULL OR p.Px_close IS NOT NULL)
|
p.Px_open IS NOT NULL OR p.Px_close IS NOT NULL)
|
||||||
)
|
)
|
||||||
SELECT
|
SELECT
|
||||||
u.Name + ' (' + u.Ticker_bbg + ')' AS Nome,
|
CONCAT(u.Name, ' (', u.Ticker_bbg, ')') AS Nome,
|
||||||
r.Px_date,
|
r.Px_date,
|
||||||
r.Px
|
r.Px
|
||||||
FROM Ranked r
|
FROM Ranked r
|
||||||
|
|||||||
Reference in New Issue
Block a user