やっていきましょう。
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#(8)パターンマッチング like -- 1)中からはじまるlast_name select * from users where last_name like '中%'; -- 2)中を含むlast_name select * from users where last_name like '%中%'; -- 3)子で終わるfirst_name select * from users where first_name like '%子'; -- 4)3文字の内、子で終わるfirst_name select * from users where first_name like '__子'; |
次回はlimitをやっていきましょう。
The following two tabs change content below.
Keita N
最新記事 by Keita N (全て見る)
- DDPG by gymnasium 16日目 - 2023年6月5日
- DDPG by gymnasium 15日目 - 2023年6月2日
- DDPG by gymnasium 14日目 - 2023年6月1日