#sql #MySQL #table
00:00:00 Intro
00:00:36 CREATE TABLE
00:03:00 SELECT * FROM TABLE
00:03:21 RENAME TABLE
00:03:54 DROP TABLE
00:04:11 Add a column
00:05:13 Rename a column
00:05:50 Modify a column
00:06:34 Change column position AFTER
00:07:32 Change column position FIRST
00:07:52 Drop a column
00:08:09 Conclusion
CREATE TABLE employees (
employee_id int PRIMARY KEY,
first_name VARCHAR(50),
last_name VARCHAR(50),
hourly_pay DECIMAL(5, 2),
hire_date DATE
);
RENAME TABLE employees TO workers;
DROP TABLE employees;
ALTER TABLE employees
ADD phone_number VARCHAR(15);
ALTER TABLE employees
RENAME COLUMN phone_number TO email;
ALTER TABLE employees
MODIFY COLUMN email VARCHAR(15);
ALTER TABLE employees
MODIFY email VARCHAR(100)
AFTER last_name;
ALTER TABLE employees
MODIFY email VARCHAR(100)
FIRST;
ALTER TABLE employees
DROP COLUMN email;
1 view
502
135
6 months ago 00:00:17 1
Design vs user experience #coding #programming #javascript #python
6 months ago 00:16:56 1
Big Tech AI Is A Lie
6 months ago 03:41:20 13
Databases In-Depth – Complete Course
6 months ago 00:05:01 1
How to Use Full Text Indexes for beginners | Full Text Indexing in Laravel for Beginners #laravel
6 months ago 01:37:57 1
Complete Backend API in Golang (JWT, MySQL & Tests)
7 months ago 00:00:00 1
Complete Application in SpringBoot API and React UI - InventoryMS Begins!
7 months ago 00:13:17 1
FUNCTIONAL UNITS OF DIGITAL COMPUTER SYSTEM || COMPUTER ORGANIZATION || COMPUTER ARCHITECTURE
7 months ago 10:44:08 3
PHP For Beginners - Complete Course (2023) [Check Comment for HD version Link]
7 months ago 00:36:03 9
Analyzing Analytical Databases | Jess Archer at Laracon US 2024 in Dallas, TX
8 months ago 10:41:18 24
QA Engineer From Scratch FULL AUDIO ENGLISH COURSE
9 months ago 00:04:14 1
Meditation UI Design with Flutter: Complete App Design #1
9 months ago 01:06:23 1
Energy power meters 3 units connect wtih WinCC Explorer SCADA Server and Client configuration
9 months ago 00:09:04 1
How to scale Laravel: beyond the basics (Advanced Laravel Scaling)
10 months ago 00:18:18 1
Complete Online Real Estate Management System in PHP MySQL | Free Source Code Download