SQL Hello World
In the previous chapter, we created a database on a database server, which can be a MySQL, SQL Server, Oracle, etc.,
After the database is successfully created and selected as a target database, execute the below simple SQL query that returns "Hello World!!" if everything is proper.
SELECT 'Hello World!!';
Overall
We have executed a simple Hello World SQL query to make sure the database is created and available for use.