Discussion :: MySQL Database MCQs
-
Find the error in the following query?SELECT cust_id, fed_idFROM customerWHERE cust_id = 'I'AND fed_id BETWEEN 5000-00-000 AND 9999-999-000;
Answer : Option B
Explanation :
In the following query, there will be no error in executing as 5000-00-000 AND 9999-999-000 is "string ranges.
Be The First To Comment