Smart SQL Tools for Every Database

Top 10 SQL Errors

How to Fix MySQL "Unknown column"

MySQL cannot find the column in the table or query scope.

Example error message

ERROR 1054 (42S22): Unknown column 'username' in 'field list'

Common causes

Quick fix

SELECT name FROM users;

Checklist

Back to Top 10 SQL Errors