Query
Can anyone provide the query to retrieve the "topmost matching book title among many matching book title in the database"
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.
ArshadPosted Nov 11, 2010, 7:25 AM
you can use the TOP Clause
Select TOP(1) Book_Name From Book_Details
Where Book_Name LIKE '%c%'
Regards,
Arshad