Write a query that displays all songs whose names have at least three words.
My Code:
SELECT name
FROM track
WHERE LENGTH(‘name’) >= 3;
What I expected to happen: the songs with titles longer than 3 words be be produced
What actually happened: all song titles were produced
I do not understand how to use greater/lesser than with text columns.