MySQL
 Computer >> コンピューター >  >> プログラミング >> MySQL

MySQLは複数の値を選択しますか?


複数の値を選択するには、ORおよびIN演算子を使用してwhere句を使用できます。

構文は次のとおりです-

ケース1-ORの使用
select *from yourTablename where yourColumnName = value1 or yourColumnName = value2 or yourColumnName = value3,.........N;
ケース2-INの使用
select *from yourTableName where yourColumnName IN(value1,value2,....N);

上記の構文を理解するために、テーブルを作成しましょう。以下は、テーブルを作成するためのクエリです-

mysql> create table selectMultipleValues
−> (
−> BookId int,
−> BookName varchar(200)
−> );
Query OK, 0 rows affected (1.68 sec)

これで、insertコマンドを使用してテーブルにいくつかのレコードを挿入できます。レコードを挿入するためのクエリは次のとおりです-

mysql> insert into selectMultipleValues values(100,'Introduction to C');
Query OK, 1 row affected (0.18 sec)

mysql> insert into selectMultipleValues values(101,'Introduction to C++');
Query OK, 1 row affected (0.19 sec)

mysql> insert into selectMultipleValues values(103,'Introduction to java');
Query OK, 1 row affected (0.14 sec)

mysql> insert into selectMultipleValues values(104,'Introduction to Python');
Query OK, 1 row affected (0.14 sec)

mysql> insert into selectMultipleValues values(105,'Introduction to C#');
Query OK, 1 row affected (0.13 sec)

mysql> insert into selectMultipleValues values(106,'C in Depth');
Query OK, 1 row affected (0.15 sec)

selectステートメントを使用して、テーブルのすべてのレコードを表示します。クエリは次のとおりです-

mysql> select *from selectMultipleValues;

以下は出力です-

+--------+------------------------+
| BookId | BookName               |
+--------+------------------------+
| 100    | Introduction to C      |
| 101    | Introduction to C++    |
| 103    | Introduction to java   |
| 104    | Introduction to Python |
| 105    | Introduction to C#     |  
| 106    | C in Depth             |
+--------+------------------------+
6 rows in set (0.00 sec)
>

以下は、OR演算子を使用して複数の値を選択するためのクエリです。

ケース1-OR演算子を使用します。
mysql> select *from selectMultipleValues where BookId = 104 or BookId = 106;

以下は出力です-

+--------+------------------------+
| BookId | BookName |
+--------+------------------------+
| 104 | Introduction to Python |
| 106 | C in Depth |
+--------+------------------------+
2 rows in set (0.00 sec)
> ケース2-In演算子を使用します。

以下は、IN演算子を使用して複数の値を選択するためのクエリです。

mysql> select *from selectMultipleValues where BookId in(104,106);

以下は出力です-

+--------+------------------------+
| BookId | BookName               |
+--------+------------------------+
| 104    | Introduction to Python |
| 106    | C in Depth             |  
+--------+------------------------+
2 rows in set (0.00 sec)

  1. 複数の最小値をフェッチするMySQLクエリ?

    このために、MIN()と一緒にサブクエリを使用できます。まずテーブルを作成しましょう- mysql> create table DemoTable    -> (    -> Name varchar(20),    -> Score int    -> ); Query OK, 0 rows affected (0.56 sec) 挿入コマンド-を使用して、テーブルにいくつかのレコードを挿入します mysql> insert into DemoTable values(

  2. MySQLでSelectクエリを使用して挿入

    SELECTクエリを使用した挿入の場合、構文は次のとおりです- insert into yourTableName(yourColumnName1,yourColumnName2,yourColumnName3,...N) select yourValue1,yourValue2,yourValue3,......N;を選択します。 まずテーブルを作成しましょう- mysql> create table DemoTable1603    -> (    -> StudentId int,    -> Stud