Tech Study

Write a SQL query to display a string “Hello World!”

Introduction

Write a SQL query to display a string “Hello World!”. I have used Microsoft SQL server 2008 R2 for the following demo.

SELECT 'Hello World';

Result

Write a SQL query to display a string "Hello World!"
Write a SQL query to display a string “Hello World!”

TaggedWrite a SQL query to display a string "Hello World!"

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