CBSE Class 12 Computer Science Question 55 of 91

Relational Database and SQL — Question 16

Back to all questions
16
Question

Question 13

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,

SELECT 13 * 15;