CBSE Class 12 Computer Science Question 33 of 78

Simple Queries in SQL — Question 9

Back to all questions
9
Question

Question 9

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;