About 212,000 results
Open links in new tab
  1. Convert Rows to columns using 'Pivot' in SQL Server

    Apr 10, 2013 · 413 If you are using SQL Server 2005+, then you can use the PIVOT function to transform the data from rows into columns. It sounds like you will need to use dynamic sql if …

  2. Understanding PIVOT function in T-SQL - Stack Overflow

    A pivot is used to convert one of the columns in your data set from rows into columns (this is typically referred to as the spreading column). In the example you have given, this means …

  3. In SQL Server how to Pivot for multiple columns - Stack Overflow

    Mar 4, 2022 · This is my sample table, I want to pivot the category column and get the sales, stock and target as rows I want the sample output in this form as shown in the below wherein …

  4. SQL Server dynamic PIVOT query? - Stack Overflow

    SQL Server dynamic PIVOT query? Asked 13 years, 8 months ago Modified 2 years, 3 months ago Viewed 372k times

  5. Dynamic alternative to pivot with CASE and GROUP BY

    Mar 20, 2013 · Dynamic Pivot Tables with JSON and PostgreSQL uses PostgreSQL's new jsonb_object_agg function to construct pivoted data on the fly in the form of a JSON object.

  6. sql - Can I Pivot in Snowflake without single quotes, without …

    Apr 22, 2024 · Can I Pivot in Snowflake without single quotes, without manually aliasing the column names? Asked 1 year, 8 months ago Modified 11 months ago Viewed 5k times

  7. sql - Efficiently convert rows to columns - Stack Overflow

    I'm looking for an efficient way to convert rows to columns in SQL Server, I heard that PIVOT is not very fast, and I need to deal with lot of records. This is my example: Id Value ColumnName …

  8. SQL Server: Examples of PIVOTing String data - Stack Overflow

    Trying to find some simple SQL Server PIVOT examples. Most of the examples that I have found involve counting or summing up numbers. I just want to pivot some string data. For example, I …

  9. sql - Pivot multiple rows / columns into 1 row - Stack Overflow

    Jun 19, 2019 · PIVOT will make a column for each value in the FOR column and will give that column the value of the aggregation function that you specify It helps to visualise the …

  10. Simple way to transpose columns and rows in SQL?

    Then you apply the aggregate function sum() with the case statement to get the new columns for each color. Unpivot and Pivot Static Version: Both the UNPIVOT and PIVOT functions in SQL …