KQL Tutorial Series | Joining Tables (Demo) | EP5

  Рет қаралды 15,139

TeachJing

TeachJing

Күн бұрын

Пікірлер: 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 :)
@JackSmith-oy7rx
@JackSmith-oy7rx 3 жыл бұрын
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!
@patrickoleary1454
@patrickoleary1454 3 жыл бұрын
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
@GauravGupta86
@GauravGupta86 Жыл бұрын
Very well simple explanation ! good stuff
@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.
@his-worddevotionals540
@his-worddevotionals540 2 жыл бұрын
excellent! thank you Jing!
@iamFlakey
@iamFlakey 2 жыл бұрын
Well done dude, I appreciate this!
@avishalom14
@avishalom14 3 жыл бұрын
Great explanation, thanks!
@TeachJing
@TeachJing 3 жыл бұрын
Glad it was helpful!
@rahul53403
@rahul53403 3 жыл бұрын
good job !!
@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 жыл бұрын
Thanks👍
@TeachJing
@TeachJing 4 жыл бұрын
Your welcome!
@thrinathkumar8749
@thrinathkumar8749 4 жыл бұрын
can you kindly make a video on unions too?
@Sharlie909
@Sharlie909 Жыл бұрын
Nice vid!!! 🦾
@KenseiOtaku
@KenseiOtaku 3 жыл бұрын
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 жыл бұрын
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
@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.
@Robertorossell
@Robertorossell Жыл бұрын
Thanks
@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.
@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?
@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 жыл бұрын
You can specify keys for each column you want to link. Table1 | join (Table2) on CommonColumn, $left.col1 == $right.col2
KQL Tutorial Series - Unions - EP6 (with lab)
8:15
TeachJing
Рет қаралды 4,9 М.
KQL Tutorial Series | Straight Basics | EP1
25:32
TeachJing
Рет қаралды 65 М.
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 148 МЛН
VIP ACCESS
00:47
Natan por Aí
Рет қаралды 30 МЛН
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН
Kusto Query Language (KQL) Overview
1:03:38
John Savill's Technical Training
Рет қаралды 72 М.
KQL - The Next Query Language You Need to Learn | Data Exposed: MVP Edition
12:27
AI Is Making You An Illiterate Programmer
27:22
ThePrimeTime
Рет қаралды 231 М.
Kusto Query Language (KQL) -- Part 1
18:27
Atmosera
Рет қаралды 13 М.
Recon your Azure resources with Kusto Query Language (KQL)
15:11
KQL Tutorial Series | Let's Make a MITRE Dashboard | EP4
35:01
Microsoft Sentinel Threat Hunting Deep Dive
24:03
CraigCloudITPro
Рет қаралды 6 М.
Advanced Queries using the Kusto Query Language (KQL) in Azure
1:27:43
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 148 МЛН