Skip to content

Instantly share code, notes, and snippets.

#SQL #GENERAL CONCEPT

SELECT THE EXISTING DATABASE

USE name_database; ###DISPLAY EXISTING TABLES SHOW TABLES; ###CREATE NEW TABLE

CREATE TABLE students(
id INT NOT NULL PRIMARY KEY,
@pphamnham
pphamnham / 0-startup-overview.md
Created August 16, 2016 12:56 — forked from dideler/0-startup-overview.md
Startup Engineering notes

#Data Science Training

Installing R Packages

install.packages("name_of_package")

To install multiple packages:

install.packages(c("abc","def","ghi")