Computer >> 컴퓨터 >  >> 프로그램 작성 >> MySQL

ENUM으로 설정된 MySQL에서 ACTIVE 상태의 레코드 선택

<시간/>

먼저 테이블을 생성해 보겠습니다. 여기서는 ENUM -

를 사용하여 상태를 설정했습니다.
mysql> create table DemoTable2037
   -> (
   -> StudentId int,
   -> status enum('Active','Inactive')
   -> );
Query OK, 0 rows affected (0.51 sec)

삽입 명령을 사용하여 테이블에 일부 레코드 삽입 -

mysql> insert into DemoTable2037 values(99,'Active');
Query OK, 1 row affected (0.08 sec)

mysql> insert into DemoTable2037 values(99,'Inactive');
Query OK, 1 row affected (0.11 sec)

mysql> insert into DemoTable2037 values(100,'Inactive');
Query OK, 1 row affected (0.20 sec)

mysql> insert into DemoTable2037 values(99,'Active');
Query OK, 1 row affected (0.18 sec)

mysql> insert into DemoTable2037 values(100,'Inactive');
Query OK, 1 row affected (0.15 sec)

mysql> insert into DemoTable2037 values(101,'Active');
Query OK, 1 row affected (0.14 sec)

mysql> insert into DemoTable2037 values(101,'Active');
Query OK, 1 row affected (0.12 sec)

select 문을 사용하여 테이블의 모든 레코드 표시 -

mysql> select *from DemoTable2037;

이것은 다음과 같은 출력을 생성합니다 -

+-----------+----------+
| StudentId | status   |
+-----------+----------+
| 99        | Active   |
| 99        | Inactive |
| 100       | Inactive |
| 99        | Active   |
| 100       | Inactive |
| 101       | Active   |
| 101       | Active   |
+-----------+----------+
7 rows in set (0.00 sec)

다음은 ACTIVE 상태의 레코드를 선택하는 쿼리입니다. -

mysql> select StudentId,status
   -> from DemoTable2037 where status='Active'
   -> group by StudentId;

이것은 다음과 같은 출력을 생성합니다 -

+-----------+--------+
| StudentId | status |
+-----------+--------+
| 99        | Active |
| 101       | Active |
+-----------+--------+
2 rows in set (0.00 sec)