source

MariaDB, PBXT 및 알 수 없는 쿼리 결과

factcode 2022. 9. 25. 00:14
반응형

MariaDB, PBXT 및 알 수 없는 쿼리 결과

우선, 다음과 같은 표가 있습니다.

CREATE TABLE `outlet_tags` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `importer_id` int(11) NOT NULL,
  `outlet_id` int(11) NOT NULL,
  `code` varchar(20) NOT NULL,
  `postcode` varchar(15) DEFAULT NULL,
  `tag_set` varchar(45) DEFAULT NULL,
  `tag_type` varchar(45) DEFAULT NULL,
  `tag_details` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `fk_report_outlet_tags_1` (`importer_id`),
  KEY `fk_report_outlet_tags_2` (`outlet_id`),
  KEY `outlet_tag_set` (`tag_set`),
  KEY `outlet_tag_type` (`tag_type`),
  KEY `outlet_tag_details` (`tag_details`),
  CONSTRAINT `fk_report_outlet_tags_1` FOREIGN KEY (`importer_id`) REFERENCES `importers` (`id`),
  CONSTRAINT `fk_report_outlet_tags_2` FOREIGN KEY (`outlet_id`) REFERENCES `outlets` (`id`)
) ENGINE=PBXT DEFAULT CHARSET=utf8;

다음 쿼리에서 사용되는 조건에 따라 필드 값이 달라지는 이유를 설명할 수 있는 사람이 있습니까?엔진이 마리아라면 그런 일은 일어나지 않아요.

select * from outlet_tags where code=1503 and outlet_id=407 limit 3;
+------+-------------+-----------+------+----------+---------+-----------------+----------------+
| id   | importer_id | outlet_id | code | postcode | tag_set | tag_type        | tag_details    |
+------+-------------+-----------+------+----------+---------+-----------------+----------------+
|  222 |           1 |       407 | 1503 | XXX XXX  | outlet  | Make up         | Make up        |
|  675 |           1 |       407 | 1503 | XXX XXX  | outlet  | Approved Status | Approved       |
| 1619 |           1 |       407 | 1503 | XXX XXX  | outlet  | Retail Area     | No Retail Area |
+------+-------------+-----------+------+----------+---------+-----------------+----------------+
3 rows in set (0.00 sec)

select * from outlet_tags where code=1503 and importer_id=1 limit 3;
+------+-------------+-----------+------+----------+---------+-----------------+----------------+
| id   | importer_id | outlet_id | code | postcode | tag_set | tag_type        | tag_details    |
+------+-------------+-----------+------+----------+---------+-----------------+----------------+
|  222 |           1 |       407 | 1503 | XXX XXX  | outlet  | Make up         | Make up        |
|  675 |           1 |       407 | 1503 | XXX XXX  | outlet  | Approved Status | Approved       |
| 1619 |           1 |       407 | 1503 | XXX XXX  | outlet  | Retail Area     | No Retail Area |
+------+-------------+-----------+------+----------+---------+-----------------+----------------+
3 rows in set (0.00 sec)

select * from outlet_tags where importer_id=1 and outlet_id=407 limit 3;
+------+-------------+-----------+------+----------+---------+----------+-------------+
| id   | importer_id | outlet_id | code | postcode | tag_set | tag_type | tag_details |
+------+-------------+-----------+------+----------+---------+----------+-------------+
|  222 |           1 |       407 | 1503 | NULL     | NULL    | NULL     | NULL        |
|  675 |           1 |       407 | 1503 | NULL     | NULL    | NULL     | NULL        |
| 1619 |           1 |       407 | 1503 | NULL     | NULL    | NULL     | NULL        |
+------+-------------+-----------+------+----------+---------+----------+-------------+
3 rows in set (0.00 sec)

업데이트: MariaDB 5.5 PBXT는 스토리지 엔진으로 폐기되었습니다.

쿼리에서 ORDER BY를 사용해 보십시오.

행의 취득 방법에 따라서는, 엔진 마다 행이 다른 순서로 반환되는 경우가 있습니다.

언급URL : https://stackoverflow.com/questions/4079273/mariadb-pbxt-and-mysterious-query-results

반응형