PASS Summit West 2026, November 9-11|Register now
All products
SQL Code Analysis (40)
All databases
How to (40)

SQL Prompt logo

The Sins of SELECT * (BP005)

If Prompt warns you of use of the asterisk, or 'star' (*), in SELECT statements, consider replacing it with an explicit column list. It will prevent unnecessary network load and query performance problems, and avoid problems if the column order changes, when inserting into a table. Read more