Write a query to retrieve the first four characters of StuLName from the Studentinfo table
Loading
Write a query to retrieve the first four characters of StuLName from the Studentinfo table
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Brahma Prakash ShuklaPosted Oct 26, 2022, 9:11 AM
SELECT LEFT(StudName, 4) FROM Studentinfo
Amit MohantyPosted Oct 26, 2022, 4:37 AM
Try this