Skip to main content

Posts

How to create database

The SQL  CREATE DATABASE  statement is used to create a new SQL database. syntax: Create database databasename; Example: If you want to create database<student> then the query will be like below- Create database student Note: Make sure you have the admin privilege before creating any database. Once a database is created, you can check it in the list of databases.
Recent posts

What is SQL?

SQL is Structured Query Language, which is a computer language for storing, manipulating and retrieving data stored in a relational database. SQL is the standard language for Relational Database System. All the Relational Database Management Systems (RDMS) like MySQL, MS Access, Oracle, Sybase, Informix, Postgres and SQL Server use SQL as their standard database language.