Skip to content

Instantly share code, notes, and snippets.

View MarkValentineAikins's full-sized avatar
💭
Dim me as ...

Mark Valentine Aikins MarkValentineAikins

💭
Dim me as ...
View GitHub Profile
@ephrimlawrence
ephrimlawrence / mysql-db-setup-code-example.sql
Created November 21, 2022 23:23
The script demonstrates how to create a MySQL database with tables and some records in it
-- Create new a database
-- Replace 'hello_db' with any name of your choice
CREATE DATABASE hello_db;
--
-- Use the created database
-- Replace 'hello_db' with the same name your used to create the database
USE hello_db;
-- categories table