I need to select a value from my "customers" data table. I faced this question in an interview.
Select cust_Name from customers where cust_Id=5;
This query will result as "Naresh".
However, now I need to print the value as:
Customer Name is Naresh
How to print the value like this?