Skip to content

Instantly share code, notes, and snippets.

View sanjibnarzary's full-sized avatar

Sanjib Narzary sanjibnarzary

View GitHub Profile
@sanjibnarzary
sanjibnarzary / stackoverflow.sql
Created February 15, 2016 15:54 — forked from gousiosg/stackoverflow.sql
Script to import the stackexchange dumps into MySQL
# Copyright (c) 2013 Georgios Gousios
# MIT-licensed
create database stackoverflow DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;
use stackoverflow;
create table badges (
Id INT NOT NULL PRIMARY KEY,
UserId INT,