yunman
 
  //查询工资大于等于2000的人
  select * from person salary >= 2000;
  //查询名字等于scott的人
  select * from person name=\'scott\'
  //查询不属于10这个部门的人
  select * from person deptno != 10;
  select * from person deptno <> 10;

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-12-05
  • 2022-03-04
  • 2021-12-27
  • 2021-12-06
  • 2022-12-23
  • 2022-01-14
猜你喜欢
  • 2021-11-25
  • 2021-12-02
  • 2021-06-09
  • 2022-02-12
  • 2021-06-03
  • 2022-02-13
  • 2022-02-10
相关资源
相似解决方案