Createtableset_testing(idINTUNSIGNEDNOTNULLPRIMARYKEYAUTO_INCREMENT,tableSET('ABC','ABD','GHF')NOTNULL);QueryOK,0r"/> Createtableset_testing(idINTUNSIGNEDNOTNULLPRIMARYKEYAUTO_INCREMENT,tableSET('ABC','ABD','GHF')NOTNULL);QueryOK,0r">
집 >데이터 베이스 >MySQL 튜토리얼 >MySQL SET 열을 정수 오프셋 목록으로 어떻게 얻을 수 있습니까?
MAKE_SET() 함수를 사용하면 MySQL SET 열 값을 정수 오프셋 목록 형태로 얻을 수 있습니다. 이해를 돕기 위해 아래와 같이 "set_testing"이라는 테이블을 생성해 보겠습니다. -
mysql> Create table set_testing( id INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT, table SET('ABC','ABD','GHF') NOT NULL); Query OK, 0 rows affected (0.08 sec) mysql> Insert into set_testing (table) values('1'); Query OK, 1 row affected (0.06 sec) mysql> Insert into set_testing (table) values('2'); Query OK, 1 row affected (0.06 sec) mysql> Insert into set_testing (table) values('3'); Query OK, 1 row affected (0.02 sec) mysql> Insert into set_testing (table) values('4'); Query OK, 1 row affected (0.02 sec) mysql> Select * from set_testing; +----+---------+ | id | table | +----+---------+ | 1 | ABC | | 2 | ABD | | 3 | ABC,ABD | | 4 | GHF | +----+---------+ 4 rows in set (0.00 sec)
이제 다음 쿼리는 MySQL SET 열을 정수 오프셋 목록으로 가져옵니다. -
mysql> Select MAKE_SET(types+0,'1','2','3') as output from doctypes1; +--------+ | output | +--------+ | 1 | | 2 | | 1,2 | | 3 | +--------+ 4 rows in set (0.00 sec)
위 내용은 MySQL SET 열을 정수 오프셋 목록으로 어떻게 얻을 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!