やっていきましょう。
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 (全て見る)
- PySimpleGUI のメモ - 2022年12月15日
- dezeroでニューラルネットワーク2 model, optimizer, MSEをフル活用 - 2022年11月27日
- dezeroでニューラルネットワークを使った回帰をやってみる - 2022年11月26日