Resmo Changelog logo
Back to Homepage Subscribe to Updates

Changelog

See the latest new features, improvements, and product updates

Labels

  • All Posts
  • Fix
  • Announcement
  • platform
  • integrations
  • content
  • biweekly

Jump to Month

  • September 2023
  • August 2023
  • July 2023
  • June 2023
  • May 2023
  • April 2023
  • March 2023
  • February 2023
  • January 2023
  • December 2022
  • November 2022
  • October 2022
  • September 2022
  • August 2022
  • June 2022
  • May 2022
  • April 2022
  • March 2022
Changelog byAnnounceKit

Create yours, for free!

platform
a year ago

PIVOT and VALUE support in SQL queries for more concise results 🎯

PIVOT tables in SQL queries

PIVOT helps you transform your unique data results into more meaningful table-valued expressions. For certain queries, the syntax PIVOT provides is more readable and easier to interpret than the syntax that may otherwise be specified in SELECT * FROM ... statements.


Retrieve only "values" with SELECT VALUE

  • Standard SELECT statement returns a map list containing the data column information and the values in that column.

Example:

SELECT name FROM ... returns "name": "values of name" as a list of key-value map.
  • SELECT VALUE, on the other hand, returns only the values within the key-value map, omitting the key.

Example:

SELECT VALUE name FROM ... returns "values of name" as a list.
Avatar of authorSerhat Can