Skip to content

Instantly share code, notes, and snippets.

View nishantbadhautiya's full-sized avatar

Nishant Badhautiya nishantbadhautiya

  • Agra
View GitHub Profile
-- ******************* PART 1 ******************************
CREATE DATABASE temp;
USE temp;
CREATE TABLE student(
id INT PRIMARY KEY,
name VARCHAR(255)
);
INSERT INTO student values(1, "Nishant");
INSERT INTO student values(2, "Aman");