11.3k views
0 votes
Write SQL command to calculate your age in terms of number of months.


\\ \\ \\
Thanks ​

User Akshay G
by
7.9k points

1 Answer

5 votes

Answer:

SELECT age * 12 AS age_month FROM people;

Step-by-step explanation:

This operator is used to multiply two numbers in MySQL.

User Stephen Foster
by
7.9k points