We can't find the internet
Attempting to reconnect
Something went wrong!
Hang in there while we get back on track
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
Recommended Videos