| Assembly | SqlServer.Rules.dll |
| Namespace | SqlServer.Rules.Design |
| Class | AvoidSelectStarRule |
| Id | SRD0006 |
| Friendly Name | Avoid SELECT * |
| Category | Design |
| Ignorable | true |
| Applicable Types | Procedure |
| Scalar Function | |
| Table Valued Function | |
| View |
Avoid using SELECT *.
Avoid the use of SELECT *. This can cause more columns than desired to be returned, and can also cause issues if the order of the columns changes.