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
Derived.sql•428 B
Create procedure dbo.derived
as
Set nocount on;
Select 1
from dbo.TestTableSSDT
left join (Select top(100) percent Col1
from dbo.TestTableSSDT
order by Col2)
Derived
on Derived.Col1 = TestTableSSDT.Col1;
Select 1
from dbo.TestTableSSDT
left join (Select top(9999) Col1
from dbo.TestTableSSDT
order by Col1)
Derived
on Derived.Col1 = TestTableSSDT.Col1;
-- SML035, SRD0038