Sobes.tech
Senior

SQL task 1: write a query to list all products where the product description field is empty.

sobes.tech AI

Answer from AI

sql SELECT * FROM products WHERE full_description IS NULL OR full_description = '';

This query selects all products where the full description field is either not filled (NULL) or an empty string.
SQL task 1: write a query to list all products where… - sobes.tech