14. Databricks | Pyspark: Pivot & Unpivot

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 ก.พ. 2025
  • #Pivot, #Unpivot #Pyspark, #Databricks, #Spark
    #Databricks, #DatabricksTutorial, #AzureDatabricks
    #Databricks
    #Pyspark
    #Spark
    #AzureDatabricks
    #AzureADF
    #Databricks #LearnPyspark #LearnDataBRicks #DataBricksTutorial
    databricks spark tutorial
    databricks tutorial
    databricks azure
    databricks notebook tutorial
    databricks delta lake
    databricks azure tutorial,
    Databricks Tutorial for beginners,
    azure Databricks tutorial
    databricks tutorial,
    databricks community edition,
    databricks community edition cluster creation,
    databricks community edition tutorial
    databricks community edition pyspark
    databricks community edition cluster
    databricks pyspark tutorial
    databricks community edition tutorial
    databricks spark certification
    databricks cli
    databricks tutorial for beginners
    databricks interview questions
    databricks azure

ความคิดเห็น • 20

  • @ndbweurt34485
    @ndbweurt34485 2 ปีที่แล้ว +10

    highly underrated channel. no body has explained databricks so well.

  • @gulsahtanay2341
    @gulsahtanay2341 11 หลายเดือนก่อน +1

    Thank you for your efforts to provide this content.

  • @avinash1722
    @avinash1722 9 หลายเดือนก่อน +1

    So well Articulated content.!!!

  • @karthickraja1026
    @karthickraja1026 2 ปีที่แล้ว

    Hi Raja, Thanks for this effort to make our self to boost pyspark knowledge. Can I know How to access all those code in the pyspark playlist?

  • @Lord_JABA
    @Lord_JABA 2 ปีที่แล้ว

    How to do the same unpivot but with multiple columns so for example if I have not only "company" but "company","category","randomCol" want them to be unchanged. so result is
    columns :company, category, randomcol, quarter, revenue
    same effect as DAX(powerbi): Table.Unpivot(#"step1", {"Q1","Q2"}, "Quarter", "Revenue")- which adds columns quarter and revenue leaving all the other columns present in the table multiplicated when needed

  • @ranaumershamshad
    @ranaumershamshad ปีที่แล้ว +2

    Videos are very informative, but the starting and ending music is so annoying.

  • @purnimasharma9734
    @purnimasharma9734 2 ปีที่แล้ว +1

    Hi Raja, If you have more than 30 columns, is there a way to get the values dynamically (rather than typing each column's name and values) when you unpivot the data?

    • @rajasdataengineering7585
      @rajasdataengineering7585  2 ปีที่แล้ว

      Hi Purnima, yes it is possible with python logic. Though I haven't done, it's certainly possible

  • @sravanthireddy3849
    @sravanthireddy3849 2 ปีที่แล้ว +1

    Hi Raja,
    what about the interview do they ask syntax for functions ?? please reply

    • @rajasdataengineering7585
      @rajasdataengineering7585  2 ปีที่แล้ว

      Hi Sravanthi, ideally interviewers are looking for the thought process of a candidate. So no exact syntax is expected

  • @dunuker
    @dunuker 2 ปีที่แล้ว

    if i have multiple sum columns how should I perform

  • @rock9278
    @rock9278 10 หลายเดือนก่อน

    How to perform multiple Unpivot operations?

  • @ashamaheshk7306
    @ashamaheshk7306 2 ปีที่แล้ว +2

    How to perform unpivot in spark SQL?

    • @rajasdataengineering7585
      @rajasdataengineering7585  2 ปีที่แล้ว

      select col1, stack(3, 'col2', col2, 'col3', col3, 'col4', col4) as (column,agg_value) from table