Tech Study

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

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

Python Examples

Introduction: Python Examples are the basic programming concepts of python like python syntax,python data types,,python operators,python if else,python comments etc.. …

Read more

C String Functions

C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …

Read more