9 lines
120 B
MySQL
9 lines
120 B
MySQL
|
-- 删除测试
|
||
|
use studb;
|
||
|
|
||
|
create table if not exists t_stu3
|
||
|
select * from t_stu;
|
||
|
|
||
|
delete from t_stu3
|
||
|
where sex='男';
|