DEV Community

Discussion on: Creating Your First Blog With TALL - Part Five

Collapse
 
khandah profile image
khandah

Hi Alhassan,
But how can I create the database ? Is there an sql script ?
Thank you.

Collapse
 
nayi10 profile image
Alhassan Kamil

How did you install your database server? If you installed it through a WAMP/LAMP/MAMP or XAMPP stack, then you can start both your database and web servers and create your database through phpMyAdmin.

Else, you can create it with the following SQL statement:

CREATE DATABASE "tall-blog";

Note that this assumes you're accessing your database through a terminal client or anywhere you can run SQL commands.