Write a SQL query to display sum of two numbers 10 and 15

Introduction

Write a SQL query to display sum of two numbers 10 and 15. I have used Microsoft SQL server 2008 R2 for the following demo.

SELECT 10 + 15;

Result

Write a SQL query to display sum of two numbers 10 and 15
Write a SQL query to display sum of two numbers 10 and 15

Leave a Comment