Hi,
I am trying to find which authors that have the same amount characters in their first NAME as they have in their last name.
etc Steven Thomas has 6 characters in his first and last name.
I am trying, but it doesn't work. When I use:
select FNAME, LNAME,
from author
where char_length(FNAME) = char_length(LNAME);
It lists all authors available! There is something missing here, what I am doing wrong?
thanks!
I am trying to find which authors that have the same amount characters in their first NAME as they have in their last name.
etc Steven Thomas has 6 characters in his first and last name.
I am trying, but it doesn't work. When I use:
select FNAME, LNAME,
from author
where char_length(FNAME) = char_length(LNAME);
It lists all authors available! There is something missing here, what I am doing wrong?
thanks!