Skip to content

Useful Database/Sql Tricks for Data Engineering

Metadata

  • Author: Dakai Zhou
  • Full Title: Useful Database/Sql Tricks for Data Engineering
  • Category: #Type/Highlight/Article
  • URL: https://medium.com/p/83fa671cc1d7

Highlights

  • STRING_AGG()
  • STRING_AGG(expression, separator [order_by_clause]) is an aggregate function that concatenates a list of strings(string cells in one column) and places a separator between them, where [order_by_clause] is optional and it is for specifying the order of concatenated results.
  • Copy Data Between Remote DB Servers Without Creating Temporary File