やっていきましょう。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
#(7)比較演算子 where で使用 = > >= <= <> != # in not in is null is not null # between ... and ... -- 1)productsテーブルから全列を取得 select * from products; -- 2)id=1の行だけを取得 select * from products where id=1; -- 3)name='商品0003'の行だけを取得 select * from products where name='商品0003'; -- 4)price>1000の行だけを取得 select * from products where price>1000; -- 5)price<1000の行だけを取得 select * from products where price<1000; -- 6)price!=100の行だけを取得 select * from products where price!=100; select * from products where price<>100; -- 7)id=1,2,3の行を取得 select * from products where id in(1,2,3); -- 8)id!=1,2,3の行を取得 select * from products where id not in(1,2,3); -- 9)price!=nullの行を取得 select * from products where price is not null; -- 10)price=nullの行を取得 select * from products where price is null; -- 11)priceが1000から1900までの行を取得 select * from products where price>=1000 and price<=1900; select * from products where price between 1000 and 1900; -- 12)price=1000,2000の行を取得 select * from products where price=1000 or price=2000; |
次回は パターンマッチングをやっていきましょう。
The following two tabs change content below.
Keita N
最新記事 by Keita N (全て見る)
- 2024/1/13 ビットコインETFの取引開始:新たな時代の幕開け - 2024年1月13日
- 2024/1/5 日本ビジネスにおける変革の必要性とその方向性 - 2024年1月6日
- 2024/1/3 アメリカ債権ETFの見通しと最新動向 - 2024年1月3日