Question:We have a table named "Customer" which has a column named "Customerid" having datatype Integer. We need to fetch the output with column title: 'Customer id is (value of customerid from the table)'. What will be the query?
A Select 'Customer id is' + customerid From Customer
B Select 'Customer id is' + CAST(customerid AS varchar) From Customer
C Select 'Customer id is' + CAST(customerid AS integer) From Customer
D Both
E None of these
+ AnswerB
+ Report