Skip to content

Instantly share code, notes, and snippets.

View BillyOgilvie's full-sized avatar

Billy Ogilvie BillyOgilvie

View GitHub Profile
@BillyOgilvie
BillyOgilvie / cookbook.sql
Created February 24, 2023 19:53 — forked from greghelton/cookbook.sql
MySQL Database for Cookbook, Recipes, Ingredients
-- start the server: $ mysqld --console
-- login: $ mysql -u root --password=wxyz
-- run the script: mysql> source /Users/javapro/dev/src/sql/Cookbook.sql
-- the script:
drop database if exists Cookbook;
create database Cookbook;
connect Cookbook;