programming-examples/sql/RetrieveFromTables/Write a query to display the result of an arithmetic simplification.sql
2019-11-18 14:05:53 +01:00

2 lines
104 B
SQL

/*Write a query to display the result of an arithmetic simplification.*/
SELECT 10 + 15 - 5 * 2;