How to Create a Database in Oracle, MySql, SQL Server - SQL query for creating a database
Oracle provide one user for one database means here is no command for creating a database every user is a database itself in oracle.
Creation a Database into SQL Server :-
SQL Server provide the facility to creating a database graphically but you can create a database with sql query as well like this.
create database <databasename>
create database university;
Creating a Database into MySql :-
MySql provide the facility to creating a database graphically but you can create a database with sql query as well like this.
create database <databasename>
create database university;
Oracle provide one user for one database means here is no command for creating a database every user is a database itself in oracle.
Creation a Database into SQL Server :-
SQL Server provide the facility to creating a database graphically but you can create a database with sql query as well like this.
create database <databasename>
create database university;
Creating a Database into MySql :-
MySql provide the facility to creating a database graphically but you can create a database with sql query as well like this.
create database <databasename>
create database university;
{ 0 comments... read them below or add one }
Post a Comment