CBSE Class 12 Informatics Practices Question 35 of 79

MySQL SQL Revision Tour — Question 3

Back to all questions
3
Question

Question 3

How would you calculate 13 * 15 in SQL ?

Answer

To calculate 13 * 15 in SQL, we can use SELECT statement to retrieve rows computed without reference to any table. For example,

mysql> SELECT 13 * 15;