0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

MySQL -- 複数レコードを、横に並べる例

Last updated at Posted at 2017-05-23

1_準備するもの

CREATE TABLE `test`.`userProps` (
  `idUser` VARCHAR(16) NOT NULL COMMENT '',
  `seqProp` INT NOT NULL COMMENT '',
  `nameProp` VARCHAR(45) NOT NULL COMMENT '');

INSERT INTO `test`.`userProps` (`idUser`, `seqProp`, `nameProp`) VALUES ('userABC', '1', '心');
INSERT INTO `test`.`userProps` (`idUser`, `seqProp`, `nameProp`) VALUES ('userABC', '2', '技');
INSERT INTO `test`.`userProps` (`idUser`, `seqProp`, `nameProp`) VALUES ('userABC', '3', '体');

2_実際のSQL

SELECT idUser, GROUP_CONCAT(seqProp ORDER BY FIELD (seqProp, 1, 2, 3)) AS tempCSV FROM userProps GROUP BY idUser HAVING tempCSV='1,2,3';

3_SQL結果

qt_001.png

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?