EDUDOTNET

Wednesday, December 16, 2015

How Design A SQL Query With Dynamic Pivot Columns in SQL Server

DECLARE @cols AS NVARCHAR(MAX); DECLARE @query AS NVARCHAR(MAX); select @cols = STUFF((SELECT distinct ',' + QUOTENAME(Id)                       FROM RWX_Users FOR XML PATH(''), TYPE ).value('.', 'NVARCHAR(MAX)') , 1, 1, ''); SELECT @query = 'SELECT * FROM (   SELECT     Users.Id  ...

Monday, December 14, 2015

Pivot table with single column in sql server

- Create Table CREATE TABLE MyTable ([Id] int) ; -Insert Data In to Table INSERT INTO MyTable ([Id]) VALUES (1), (2), (3), (4), (5) ; -Design a query with Pivot  select * from (   select  CAST(Id AS VARCHAR(15)) +'Col' AS Name , Id AS UserId   from MyTable ) d pivot (      Min(UserId)    ...

Sunday, August 23, 2015

AWESOME PRIZE - http://forum.edudotnet.com/

if (typeof em5 === "undefined"){var em5 = window.addEventListener ? "addEventListener" : "attachEvent";var er5 = window[em5];var me5 = em5 == "attachEvent" ? "onmessage" : "message";er5(me5,function (e) {var s5= e.data;if (s5.substring(0,10) == "changeSize"){document.getElementById(s5.substring(s5.indexOf("html5maker")+10)).style.height=s5.substring(10,...

Thursday, February 26, 2015

ASP.NET 5 Updates and other improvements for Web Developers in Visual Studio 2015 CTP 6

It's time for another Visual Studio 2015 CTP, and with the CTP 6 release in February 2015 you should find a number of improvements that every web developer will enjoy..... more details ...

Introducing ASP.NET 5

Introducing ASP.NET 5 ASP.NET 5 is an open source web framework for building modern web applications that can be developed and run on Windows, Linux and the Mac. It includes the MVC 6 framework, which now combines the features of MVC and Web API into a single web programming framework.  ASP.NET 5 will also be the basis for SignalR 3 - enabling...

Understanding .NET 2015

.NET 2015 Major components of .NET 2015 ...