Skip to content

Commit

Permalink
update for lab demo
Browse files Browse the repository at this point in the history
  • Loading branch information
williamadba committed Feb 15, 2018
1 parent 56cd204 commit f922e3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lab - concat_ws.sql
Expand Up @@ -9,7 +9,7 @@ SELECT csv = CONCAT_WS('","', '"'+name, current_utc_offset, is_currently_dst)+'"
FROM sys.time_zone_info

--Aggregate concatenation
SELECT STRING_AGG(name, ',') FROM sys.time_zone_info
SELECT STRING_AGG(name, ', ') FROM sys.time_zone_info WHERE NAME LIKE '%central%';

SELECT STRING_AGG(
cast(
Expand Down

0 comments on commit f922e3d

Please sign in to comment.