Computer Science, asked by mohinimy17, 2 months ago

The CUSTOMER table has the following structure CID NUMBER (5), CNAME VARCHAR2 (50), CADDRESS VARCHAR2 (150) Which of the following statement will produce the cutput as
WELCOME CUSTOMER_NAME", where CUSTOMER_NAME is fetched from the CUSTOMER table?
Select one
a SELECT "WELCOME || CNAME“ FROM CUSTOMER;
b. SELECT WELCOME CNAME FROM CUSTOMER;
C. SELECT WELCOME", CNAME FROM CUSTOMER;
d. SELECT "WELCOME' || CNAME FROM CUSTOMER;​

Answers

Answered by amanmusahari
0

Answer:

The CUSTOMER table has the following structure CID NUMBER (5), CNAME VARCHAR2 (50), CADDRESS VARCHAR2 (150) Which of the following statement will produce the cutput as WELCOME CUSTOMER_NAME", where CUSTOMER_NAME is fetched from the CUSTOMER table? Select one a SELECT "WELCOME || CNAME“ FROM CUSTOMER; b. SELECT WELCOME CNAME FROM CUSTOMER; C. SELECT WELCOME", CNAME FROM CUSTOMER; d. SELECT "WELCOME' || CNAME FROM CUSTOMER;.

Similar questions