-2
がありません私はは、コードを実行すると、式
select * from medication
where MEDICINE like '%injection'
and where visit date between '01-May-2004' and between '31-May-2004';
がありません私はは、コードを実行すると、式
select * from medication
where MEDICINE like '%injection'
and where visit date between '01-May-2004' and between '31-May-2004';
コメントが冗長になっていたエラー不足している表現を受け取ります。
SELECT *
FROM medication
WHERE MEDICINE like '%injection'
and visit_date between '01-May-2004' and '31-May-2004';
を 'と'と 'と'に変更します。また、それが予定されているものであれば、「訪問日」を修正してください。 –
SELECTごとに1つだけです。 – jarlh
がエラーを返すようになりました。ORA-00920:無効なリレーショナル演算子 – CWilson