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

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more