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
SML011.md•633 B
# SQL Server Rule: SML011
| | |
|----|----|
| Assembly | TSQLSmellSCA |
| Namespace | TSQLSmellSCA |
| Class | TSQLSmellSCA11 |
## Rule Information
| | |
|----|----|
| Id | SML011 |
| Friendly Name | Single character aliases are poor practice |
| Category | CodeSmells |
| Ignorable | false |
| Applicable Types | Model |
## Description
Single character aliases are poor practice
### Examples
```sql
CREATE PROCEDURE [dbo].[SingleCharAlias]
AS
set nocount on;
Select a.Col1
from (Select col1 from [dbo].TestTableSSDT) as a
RETURN 0
-- SML011
```
<sub><sup>Generated by a tool</sup></sub>