Como escrever uma única consulta MySQL para exibir um valor para múltiplas entradas?
Para isso, use a palavra-chave BETWEEN. Vamos primeiro criar uma tabela:
mysql> create table DemoTable1537
-> (
-> StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY,
-> StudentName varchar(20)
-> );
Query OK, 0 rows affected (0.72 sec)
Insira alguns registros na tabela usando o comando insert:
mysql> insert into DemoTable1537(StudentName) values('Chris');
Query OK, 1 row affected (0.13 sec)
mysql> insert into DemoTable1537(StudentName) values('Bob');
Query OK, 1 row affected (0.11 sec)
mysql> insert into DemoTable1537(StudentName) values('Sam');
Query OK, 1 row affected (0.10 sec)
mysql> insert into DemoTable1537(StudentName) values('Mike');
Query OK, 1 row affected (0.16 sec)
mysql> insert into DemoTable1537(StudentName) values('David');
Query OK, 1 row affected (0.10 sec)
mysql> insert into DemoTable1537(StudentName) values('John');
Query OK, 1 row affected (0.14 sec)
mysql> insert into DemoTable1537(StudentName) values('Carol');
Query OK, 1 row affected (0.12 sec)
Exiba todos os registros da tabela usando a instrução select:
mysql> select * from DemoTable1537;
Isso produzirá a seguinte saída:
+-----------+-------------+
| StudentId | StudentName |
+-----------+-------------+
| 1 | Chris |
| 2 | Bob |
| 3 | Sam |
| 4 | Mike |
| 5 | David |
| 6 | John |
| 7 | Carol |
+-----------+-------------+
7 rows in set (0.00 sec)
A seguir está a consulta para exibir um valor para múltiplas entradas:
mysql> select StudentName from DemoTable1537 where StudentId between 3 and 6;
Isso produzirá a seguinte saída:
+-------------+
| StudentName |
+-------------+
| Sam |
| Mike |
| David |
| John |
+-------------+
4 rows in set (0.00 sec)