缺少表达

时间:2017-06-01 14:19:11

标签: sql oracle

运行代码时,我收到错误表达式

select * from medication
where MEDICINE like '%injection'
and where visit date between '01-May-2004' and between '31-May-2004';

1 个答案:

答案 0 :(得分:1)

评论变得冗长:更容易只显示更改并解释它们。

SELECT * 
FROM medication
WHERE MEDICINE like '%injection'
  and visit_date between '01-May-2004' and '31-May-2004';
  • no 2nd where ...
  • 之间没有第二名
  • 访问日期需要在" "如果有特定的空间和案例那么。或者使用_在Oracle中很流行,但它实际上取决于列的名称。