Skip to content

Instantly share code, notes, and snippets.

View tapankumarpatro's full-sized avatar
🇹🇰
Make awesome products

Tapan Patro tapankumarpatro

🇹🇰
Make awesome products
  • Quantiphi
  • Hyderabad
View GitHub Profile
@tapankumarpatro
tapankumarpatro / cookbook.sql
Created September 13, 2019 12:34 — 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;