programming-examples/sql/RetrieveFromTables/Write a query to display sum of two numbers 10 and 15.sql

2 lines
76 B
MySQL
Raw Normal View History

2019-11-18 14:05:53 +01:00
/*Write a query to display sum of two numbers 10 and 15.*/
SELECT 10 + 15;