SQL Window Functions: GROUP BY on Steroids – Without Collapsing Rows

Dive into the power of SQL window functions, a transformative tool for data analysis that enables calculations across related table rows without collapsing them like traditional GROUP BY clauses. These functions, categorized into aggregate (like AVG, MAX, MIN, SUM, COUNT), value (ROW_NUMBER, RANK, DENSE_RANK, PERCENT_RANK, NTILE), and ranking (LAG, LEAD, FIRST_VALUE, LAST_VALUE) types, add calculated…

Read More

SQL Magic: Auto-Generating HTML Reports (With Google Charts and JavaScript)

This tutorial demonstrates how to generate HTML documents using SQL queries. By embedding HTML code within SQL queries, you can create dynamic reports containing text, charts, and other elements. This approach eliminates the need for separate applications and streamlines the report generation process. The tutorial covers topics such as creating SQL tables, inserting data, using…

Read More

Build Your Own Excel Toolbars: Excel Automation with Add-in created in Visual Studio using VSTO

This video provides a step-by-step guide on creating a custom Excel add-in using Visual Basic for Applications (VB.NET) and Microsoft Visual Studio. It starts with setting up the project in Visual Studio, then walks you through designing the add-in ribbon with buttons and options for formatting. Next, you’ll learn how to code the functionality behind…

Read More

Setting up Public mySQL Server on your PC, and connecting it to Looker Reports

Welcome to our Looker Studio tutorial! In this tutorial, we’ll guide you through the process of setting up a XAMPP server, connecting MySQL to Workbench, creating tables and entering data, connecting MySQL to Looker Studio, and hosting Looker Studio reports on your XAMPP server’s web page. 🔹 Download Workbench:Get started by downloading Workbench here.Follow the…

Read More

Creating Realtime Live Reports in SQL Server Reporting Services

How to Install and Configure SQL Server Reporting Services (SSRS): https://youtu.be/o4-Fztiov1E Welcome to another SQL Server tutorial. In today’s session, we’ll guide you through the process of connecting your SQL Server database to SQL Server Reporting Services, allowing you to display live, real-time information in a dynamic report. In our previous tutorial, we covered the…

Read More