SQL Interview Questions | 8 Characters in name
Question
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
It will take less than 1 minute to register for lifetime. Bonus Tip - We don't send OTP to your email id Make Sure to use your own email id for free books and giveaways
Answers ( 6 )
select ename from employee where ename len(ename)<8;
Can you check it?
select ename from employee where length(ename)<8
select name
from table
where leength(name) > 8
SELECT * FROM EMPLOYEES
WHERE LENGTH(FIRST_NAME) < 8
Select*from Table
where LENGHT(Name)<8;
Select*from Table
where LENGTH(Name)<8;