Bug Report for https://neetcode.io/problems/sql-delete-where In the question description, ``` DELETE FROM users WHERE username = NULL; ``` should be ``` DELETE FROM users WHERE username is NULL; ``` because the comparison operator `=` is not used for checking NULL values. Screenshot: <img width="1736" height="711" alt="Image" src="https://github.com/user-attachments/assets/0bd833f1-99ee-48eb-8675-34eeffa144ef" />