leetcode icon indicating copy to clipboard operation
leetcode copied to clipboard

Bug Report for sql-delete-returning

Open tdeshazo opened this issue 2 months ago • 0 comments

Bug Report for https://neetcode.io/problems/sql-delete-returning

The example code blocks have some syntax issues.

  1. Invalid NULL comparison
  2. Premature statement terminator before RETURNING clause

Original

DELETE FROM users
WHERE username = NULL;
RETURNING *;

DELETE FROM users
WHERE username = NULL;
RETURNING id, username, email;

Corrected

DELETE FROM users
WHERE username IS NULL
RETURNING *;

DELETE FROM users
WHERE username IS NULL
RETURNING id, username,email;

tdeshazo avatar Oct 19 '25 20:10 tdeshazo