Create DB & Table Queries

From TRCCompSci - AQA Computer Science
Revision as of 12:54, 24 December 2016 by Admin (talk | contribs) (Created page with "==Creating A Database== once you have an sql server / phpmyadmin running, you will need to create a database. This is very simple: <syntaxhighlight lang=sql> Create Database ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Creating A Database

once you have an sql server / phpmyadmin running, you will need to create a database. This is very simple:

Create Database DBName ;

so to create a database called my_db:

Create Database my_db ;