摘要:
select * from emp; --emp全表select * from dept; --dept全表 --查询emp表中,工资是800,950,1300或者3000的员工信息 select * from emp where sal in(800,950,1300,3000); -- 转换为e 阅读全文
posted @ 2023-03-21 17:37
Argitacos
阅读(527)
评论(0)
推荐(0)