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.
列の値が特定の文字列で始まる行を選択するにはどうすればよいですか?
たとえば、「name」列が「Mr.」で始まる行を選択したいと思います。
できるよ
select * from mytable where name like "Mr.%"
http://www.sqlite.org/lang_expr.htmlを参照してください