5 lines
83 B
MySQL
5 lines
83 B
MySQL
|
use studb;
|
||
|
|
||
|
delete from t_emp where hire_date > '2022-12-31';
|
||
|
select * from t_emp;
|