MySql Tutorial: CREATE database, add table & INSERT VALUE



MySql Tutorial: CREATE database, add table & INSERT VALUE

MySql Tutorial: CREATE database, add table & INSERT VALUE

How to create database and tables in MySql using the terminal on UBUNTU …
Find more MySQL tutorials at my website
mysql -r root -p
enter your password
SHOW DATABASES;
CREATE DATABASE name;
USE database_name;
CREATE TABLE name (fields and their data types);
DESCRIBE table_name;
INSERT INTO table_name VALUE(field values);
SELECT * FROM table_name: Instagram & twitter @tubemint

eCommerce Store Builder at $6 https://bit.ly/ecom_site

Comments are closed.