Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

DELETE 예제는 다음과 같습니다.

-- https://www.mysqltutorial.org/mysql-delete-statement.aspx

-- case 0
DELETE FROM customers
where customerNumber < 500
LIMIT 10;

-- case 1
DELETE
FROM history_hub.employees2
where performance < 8
limit 5;

  • No labels