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

MySQL에서 bool을 int로 변환하는 방법은 무엇입니까?

<시간/>

MySQL에서 bool을 int로 변환하려면 CAST()를 사용할 수 있습니다. 먼저 테이블을 생성해 보겠습니다.

mysql> create table convertBoolToIntDemo
   -> (
   -> isYoung bool
   -> );
Query OK, 0 rows affected (0.69 sec)

다음은 삽입 명령을 사용하여 테이블에 일부 레코드를 삽입하는 쿼리입니다.

mysql> insert into convertBoolToIntDemo values(true);
Query OK, 1 row affected (0.18 sec)

mysql> insert into convertBoolToIntDemo values(false);
Query OK, 1 row affected (0.09 sec)

mysql> insert into convertBoolToIntDemo values(true);
Query OK, 1 row affected (0.15 sec)

mysql> insert into convertBoolToIntDemo values(false);
Query OK, 1 row affected (0.18 sec)

다음은 select 명령을 사용하여 테이블의 레코드를 표시하는 쿼리입니다.

mysql> select *from convertBoolToIntDemo;

그러면 다음과 같은 출력이 생성됩니다.

+---------+
| isYoung |
+---------+
|       1 |
|       0 |
|       1 |
|       0 |
+---------+
4 rows in set (0.00 sec)

다음은 MySQL에서 bool을 int로 변환하는 쿼리입니다.

mysql> select cast(isYoung=1 AS SIGNED INTEGER) from convertBoolToIntDemo;

그러면 다음과 같은 출력이 생성됩니다.

+-----------------------------------+
| cast(isYoung=1 AS SIGNED INTEGER) |
+-----------------------------------+
|                                 1 |
|                                 0 |
|                                 1 |
|                                 0 |
+-----------------------------------+
4 rows in set (0.00 sec)