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.
特定の文字で始まるすべての名前を取得したい。
例:
char = 'C'
名前: チャル、チェス、アーター、ベイン、デイブ
結果:チャル、チェス
SELECT * FROM table WHERE name like "C%";
節で使用likeします。例:where
like
where
WHERE COLUMN LIKE 'C%'