CBSE Class 11 Informatics Practices Question 52 of 87

Structured Query Language (SQL) — Question 13

Back to all questions
13
Question

Question 10

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;