
SQL Queries to Manage Hierarchical or Parent-child ... - CodeProject
Sep 16, 2014 · Download source - 35.7 KB Introduction Here, in this post, we will try to manage data with hierarchical relation or parent-child relation of a specific table in SQL server. Our special …
Making OUTER and CROSS APPLY work for you - CodeProject
Jun 16, 2013 · OUTER and CROSS APPLY are unique to SQL Server so this article is intended for anybody using SQL in a SQL Server environment. It will also cover many examples of where you can …
Execute SQL Query on Mutiple SQL Servers or Databases ... - CodeProject
Jun 3, 2015 · In this blog we would learn how to execute a SQL Query on multiple databases of single DB Server or on a single Database on multiple DB Servers.
Decrypt SQL Server Objects - CodeProject
Feb 5, 2016 · Decrypt SQL Server Objects Install and run the Optillect Decryptor tool by clicking on the Direct Download Link on this site. Once this is installed, create a dedicated administrator connection …
Simplifying Dynamic SQL Queries with Dapper - CodeProject
A look at a simple SQL builder for DapperTuxCare’s Annual Open Source Survey is here! Share your opinions and help inform our yearly report. → Start Survey
Take maximum advantage of Grouping Sets, Rollup, Cube and Pivoting
Dec 5, 2016 · The article explains how to get simple, practical and powerful SQL Queries using Grouping Sets, Rollup, Cube and Pivoting by means of detailed examples.
SQL Window Functions - CodeProject
Mar 7, 2022 · SQL Window Functions Overview SQL OVER Clause As we mentioned before, it is the OVER clause that makes an aggregate a SQL window function. Here you’ll see a simple window …
Understanding Complex MySQL JOIN - CodeProject
Nov 20, 2013 · Download sql_join.zip - 2.5 KB Introduction The purpose of this article is to show the power of MySQL JOIN operations, Nested MySQL Queries (intermediate or temporary result set …
Handling NULL in T-SQL - CodeProject
Oct 5, 2014 · NULL is the smallest value in the sorting order. NULL in Group By NULL s are considered to be equal when the group by is executed. If a column in the GROUP BY clause contains rows with …
Group concatenation in T-SQL using CTE - CodeProject
Group concatenation in T-SQL using CTE.