How would you calculate 13 * 15 in SQL ?
To calculate 13 * 15 in SQL, we can use SELECT statement to retrieve rows computed without reference to any table. For example,
SELECT
mysql> SELECT 13 * 15;