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.
メソッドを使用します
rawQuery("select * from schedule where week = ? and firstweek < ? and lastweek > ?", new String[]{weekday})
位置 "?" は文字列ですが、Select文と比較するにはどうすればよいですか?
クエリが 3 つのパラメーターを持つことを想定している場合、String 配列にさらに 2 つ追加します。
new String[]{weekday, new Date(), new Date()}