Skip to content

Instantly share code, notes, and snippets.

View Mrvishal2k2's full-sized avatar
🤗
Smile Is Everything

Vishal R Mrvishal2k2

🤗
Smile Is Everything
View GitHub Profile
@Mrvishal2k2
Mrvishal2k2 / mysqlbase.txt
Last active September 29, 2022 09:29
Some basic of mysqli commandline
#THEBASE
1.create a table employee with attributes empid, name, dob, gender, address, zipcode. The attributw empid is a unique value given to all employee. Make sure no sttributes allow null values
create database newdb;
use newdb;
create table employee(
empid int not null primary key,
name varchar(50) not null,
dob date not null,