MySQL: How to UPDATE and DELETE data from a TABLE

Author: Bro Code
Published At: 2022-10-13T00:00:00
Length: 03:32

Summary

Description

#MySQL #SQL #database

00:00:00 UPDATE

00:01:14 UPDATE multiple fields

00:01:55 UPDATE a field as NULL

00:02:16 UPDATE an entire row

00:02:45 DELETE a row

UPDATE employees

SET hourly_pay = 10.25

WHERE employee_id = 6;

SELECT * FROM employees;

DELETE FROM employees

WHERE employee_id = 6;

SELECT * FROM employees;

Translated At: 2025-02-23T11:25:55Z

Request translate (One translation is about 5 minutes)

Version 3 (stable)

Optimized for a single speaker. Suitable for knowledge sharing or teaching videos.

Recommended Videos