We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ErikEJ/SqlServer.Rules'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
RangeWindow.sql•316 B
/* Default is Range UNBOUNDED PRECEDING ( Defining the frame )*/
Create Procedure dbo.RangeWindow
as
set nocount on
select sum(IdCol) over(partition by Col1
order by Col2
Range UNBOUNDED PRECEDING) as RollingBalance
from dbo.TestTableSSDT
order by Col1,Col2;
-- SML025