Select NORTH CUSTOMER From CUST DTLS Where REGION N Order-04946
Select 'NORTH', CUSTOMER From CUST_DTLS Where REGION = 'N' Order ByCUSTOMER Union Select 'EAST', CUSTOMER From CUST_DTLS WhereREGION = 'E' Order By CUSTOMERThe above statement
This multiple choice question (MCQ) is related to the book/course vu cs403 Database Management Systems. It can also be found in vu cs403 Final Term - Quiz No.1.
Select 'NORTH', CUSTOMER From CUST_DTLS Where REGION = 'N' Order ByCUSTOMER Union Select 'EAST', CUSTOMER From CUST_DTLS WhereREGION = 'E' Order By CUSTOMERThe above statement
Has an error - the string should be in double quotes
Has an error - ORDER BY clause.
Does not have an error.
Has an error - the string in single quotes 'NORTH' and 'SOUTH'.