Placement of Script Tag in HTML File

It is a very common question where you should place your script tag.  Few people prefer placing it after head tag and few prefer placing it somewhere in the body tag.  If there is no manipulation of HTML elements on page load, then it is okay to place it in the head tag.  But if

Creating, Altering, & Deleting Database in SQL

A database is basically a data structure where all the records are stored in an organized manner.  Those records can be retrieved, updated, or deleted using a desktop application or a server-side scripting language like PHP, ASP.net etc. To create a database in SQL, we make use of Create statement.  Sample code is given below.