Como obter dois resultados da consulta da mesma coluna da tabela de altura e peso

DJ Taiga:

Eu tenho uma tabela que, essencialmente, contém tanto a altura , peso e data de estudantes ( sid ). A altura e o peso são contidos na mesma coluna: 'Percent'e uma coluna enum contém altura e peso. As inscrições para ambos têm a mesma data exata:

-- Table structure and sample data for table `PROGWandH`
--
CREATE TABLE `wandh` (
  `Wid` int(24) NOT NULL,
  `sid` int(4) NOT NULL,
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `level` enum('height','weight') NOT NULL,
  `Percent` decimal(5,1) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

INSERT INTO `PROGWandH` (`Wid`, `sid`, `date`, `level`, `Percent`) VALUES
(157, 55, '2020-01-13 15:00:00', 'weight', '20.2'),
(131, 55, '2019-12-12 15:00:00', 'weight', '19.8'),
(121, 55, '2019-11-14 15:00:00', 'weight', '19.3'),
(774, 55, '2020-01-13 15:00:00', 'height', '113.0'),
(749, 55, '2019-12-12 15:00:00', 'height', '112.0'),
(739, 55, '2019-11-14 15:00:00', 'height', '111.5');
--
ALTER TABLE `wandh`
  ADD PRIMARY KEY (`Wid`);

Eu estou tentando gerar uma lista com colunas altura, largura e data. O PHP eu uso gera um conjunto cada um, um após o outro, mas eu preciso para gerar a lista como altura, peso, data, altura, peso, etc. O que eu tentei até agora gera duplicados, para que a saída não é sincronizado:

select Percent, s1.Percent1, date
from wandh
JOIN (SELECT DISTINCT Percent as 'Percent1' from wandh where level = 'weight' and sid = 55) as s1
      where sid = 55 and level = 'height';

e

select Percent, s1.Percent1, date
from wandh JOIN (SELECT Percent as 'Percent1' from wandh where level = 'weight' and sid = 55) as s1
      on date where sid = 55 and level = 'height';

Outras variações que eu tentei não fazer o trabalho.

select level, Percent, date from wandh where level like '%eight' and sid = 55;

o que estou perdendo?

passarão:

Você pode fazê-lo com agregação condicional:

select sid, date,
  max(case when level = 'weight' then percent end) weight,
  max(case when level = 'height' then percent end) height
from wandh
group by sid, date

Veja a demonstração .
Resultados:

| sid | date                | weight | height |
| --- | ------------------- | ------ | ------ |
| 55  | 2019-11-14 15:00:00 | 19.3   | 111.5  |
| 55  | 2019-12-12 15:00:00 | 19.8   | 112    |
| 55  | 2020-01-13 15:00:00 | 20.2   | 113    |

Acho que você gosta

Origin http://43.154.161.224:23101/article/api/json?id=298535&siteId=1
Recomendado
Clasificación