Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは私はpatient_id=xyzを持つ最大ID(主キー)値を持つ行を選択したい
以下は私のSQLスクリプトです
check="Select * from notes where id=max(ID) in (SELECT * FROM notes WHERE patient_id="+patientSoapBean.getPatientID()+")";
グループ関数の使用が無効になるというエラーが発生します。これでエラーを指摘できますか。
あなたはおそらくこれを行おうとしています:
SELECT * FROM notes WHERE patient_id = ? ORDER BY id DESC LIMIT 1