Category: Development
-
Get the count of each column of Kusto Table
In Kusto Query Language (KQL), you can’t directly get the count of each column in a single command. However, you can get the count of each column one by one using the count() function. Here’s an example: Replace ‘datatable’ with your table name and ‘Column1’, ‘Column2’, ‘Column3’ with your column names. This will give you the count…
-
Solving the Angular Update Error: Conflicting peer dependency
If you’re struggling to update your Angular version and encounter the following error when executing the command ‘npm install’: Here’s a potential solution: Delete the ‘node_modules’ folder and the ‘package-lock.json’ file, then reinstall npm. This could resolve your issue. To do this, execute the following commands: