KQL Tutorial Series | Joining Tables (Demo) | EP5

แชร์
ฝัง
  • เผยแพร่เมื่อ 7 ก.พ. 2025

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

  • @olafhoogstad446
    @olafhoogstad446 7 หลายเดือนก่อน

    Good morning :) A BIG thank you from me for explaining KQL so well and in an easy to understand way! You ae a KQL life saver for me :)

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

    Some VERY controversial MD levels here, surprised this video hasn't made the news...
    But great video and incredible series! You explain things in such an easy to grasp way specially with examples and follow-alongs, really good to use to learn/brush up on KQL.

  • @JackSmith-oy7rx
    @JackSmith-oy7rx 3 ปีที่แล้ว +1

    Struggled with joins and kept giving up for some time now.. this is an awesome video thanks to the easy and simple table example and showing the outputs and even the ability to work with the data yourself. Thank you!

    • @TeachJing
      @TeachJing  3 ปีที่แล้ว

      I’m glad it helped!

  • @GauravGupta86
    @GauravGupta86 ปีที่แล้ว

    Very well simple explanation ! good stuff

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

    Wonderful series!! I hope you add more to this. Unions as suggested below would be amazing, Aggregations also.

    • @TeachJing
      @TeachJing  3 ปีที่แล้ว

      Okay! Any use case in particular?

  • @georgeollis
    @georgeollis 3 ปีที่แล้ว

    This is a brilliant video Jing! Thanks so much

    • @TeachJing
      @TeachJing  3 ปีที่แล้ว

      You are very welcome

  • @his-worddevotionals540
    @his-worddevotionals540 2 ปีที่แล้ว

    excellent! thank you Jing!

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

    Well done dude, I appreciate this!

  • @sdrawkcab8911
    @sdrawkcab8911 ปีที่แล้ว

    Great video, also just wanted to let you know that I was sent here by one of your interns. 😂

  • @atul2651
    @atul2651 ปีที่แล้ว

    Thanks for the video, quick query: Is there anyway to join more than 2 tables ?

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

    Thanks👍

    • @TeachJing
      @TeachJing  4 ปีที่แล้ว

      Your welcome!

  • @rahul53403
    @rahul53403 3 ปีที่แล้ว

    good job !!

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

    can you kindly make a video on unions too?

  • @avishalom14
    @avishalom14 3 ปีที่แล้ว

    Great explanation, thanks!

    • @TeachJing
      @TeachJing  3 ปีที่แล้ว

      Glad it was helpful!

  • @Robertorossell
    @Robertorossell ปีที่แล้ว

    Thanks

  • @arshad801
    @arshad801 3 ปีที่แล้ว

    Can you please show demo on regex with in kusto..either in adx or sentinel?

  • @bharadwaj2008
    @bharadwaj2008 3 ปีที่แล้ว

    Heyy Jing, thank you very much for your content. I am about to start an internship where I have to work on Azure sentinel database with kql and produce reports. Your content gave me the perfect kickstart. I do have a few questions if you could answer them:
    1) There are tutorials online that use tables like StormEvents and Perf in the azure Log Analytics database, but I get no returned records when I use them. Why is that so?
    2) And please add more to this series:)) Thank you very much.

  • @SuperTechnicalman
    @SuperTechnicalman ปีที่แล้ว

    I want to join 2 tables in a workbook. one table has IntuneDevices has DeviceName and AppInventory_CL has ComputerName_s. How do i link those together?

  • @Sharlie909
    @Sharlie909 ปีที่แล้ว

    Nice vid!!! 🦾

  • @terribletheo8401
    @terribletheo8401 3 ปีที่แล้ว

    I did a "Table1 | join (Table2) on Name;" and got the same result as in 2:35, however I also got a "name1" column containing the same values as "name". What's up with that?

    • @TeachJing
      @TeachJing  3 ปีที่แล้ว

      That will happen and you just need to remove one of them. It basically joined both tables but kept both columns too.
      You can do project-away name1 or now just filter the columns you want to keep after joining.

  • @KenseiOtaku
    @KenseiOtaku 3 ปีที่แล้ว +1

    Hi, great tutorial! Question - how to join two tables without a common column field. If table A has a name1 column and table B has a name2 column (both columns unique, but contain the same data just the columns are called differently).

    • @TeachJing
      @TeachJing  3 ปีที่แล้ว +1

      You can either rename the column with project-rename so it’s the same column name
      docs.microsoft.com/en-us/azure/data-explorer/kusto/query/projectrenameoperator
      Or you can just identify the columns you wanna match against.
      Table1
      | join Table2 on $left.columnName == $right.columnName
      docs.microsoft.com/en-us/azure/data-explorer/kusto/query/joinoperator?pivots=azuredataexplorer

    • @KenseiOtaku
      @KenseiOtaku 3 ปีที่แล้ว

      @@TeachJing Thank you so much you're a genius! Subbed

  • @PCtutorialKid
    @PCtutorialKid 3 ปีที่แล้ว

    What if you want to join on a column that has a different name in each table but same values?

    • @TeachJing
      @TeachJing  3 ปีที่แล้ว +1

      You can specify keys for each column you want to link.
      Table1 | join (Table2) on CommonColumn, $left.col1 == $right.col2