运行代码时,我收到错误表达式
select * from medication
where MEDICINE like '%injection'
and where visit date between '01-May-2004' and between '31-May-2004';
答案 0 :(得分:1)
评论变得冗长:更容易只显示更改并解释它们。
SELECT *
FROM medication
WHERE MEDICINE like '%injection'
and visit_date between '01-May-2004' and '31-May-2004';