MySQL Free Tutorial

MySQL Tutorial for Beginners

MySQL is an open-source relational database management system. Initially released on 23rd May 1995, and runs on the following Operating Systems: Linux, Solaris, macOS, Windows, and FreeBSD. Herein, we have provided a complete MySQL Tutorial for Beginners.

MySQL Video Course for Beginners

Buy MySQL Book

Get your copy now:

Run MySQL Online

-- create
CREATE TABLE EMPLOYEE (
  empId INTEGER PRIMARY KEY,
  name TEXT NOT NULL,
  dept TEXT NOT NULL
);

-- insert
INSERT INTO EMPLOYEE VALUES (0001, 'Clark', 'Sales');
INSERT INTO EMPLOYEE VALUES (0002, 'Dave', 'Accounting');
INSERT INTO EMPLOYEE VALUES (0003, 'Ava', 'Sales');

-- fetch 
SELECT * FROM EMPLOYEE WHERE dept = 'Sales';

Viewers

The MySQL tutorial is prepared for students, engineers, and professionals. Beginning with the introduction and installation, you will learn how to create a database and tables, and how to insert records and select them. We have also included operators, clauses, and subquery lessons. With that, step-by-step text and video lessons are provided.

MySQL Tutorial Index

Visual Studio Code Tutorial
MySQL Introduction & Features
Studyopedia Editorial Staff
contact@studyopedia.com

We work to create programming tutorials for all.

No Comments

Post A Comment