Jump to content
Fórum Script Brasil
  • 0

[SP] Detalhe na Stored Procedure


jorge teruya

Question

Olá pessoal, fiz essa procedure abaixo, só que não sei como eu faço para que o resultado seja concatenado, ou seja, todos aparecerem no mesmo resultado...

A única solução seria uma tabela temporária ou é possível no próprio select?

DELIMITER $$
DROP PROCEDURE IF EXISTS `spFilipetas` $$
CREATE DEFINER=`almoxarifado`@`%` PROCEDURE `spFilipetas`()
begin
 DECLARE x INT;
 SET x = SELECT MAX(nid) FROM tecnicos;

 WHILE x > 0 do
  (SELECT r.data, t.descricao, r.hora FROM materiais_requisicoes r
INNER JOIN materiais_requisicoes_itens_seriais s ON r.nid = s.requisicao_nid
INNER JOIN tecnicos t ON t.nid = r.tecnico_nid
WHERE r.tecnico_nid = x AND r.data = "2010-08-25"
LIMIT 0,1)
UNION
(SELECT d.data, t.descricao, d.hora FROM materiais_devolucoes d
INNER JOIN materiais_devolucoes_itens_seriais s ON d.nid = s.devolucao_nid
INNER JOIN tecnicos t ON t.nid = d.tecnico_nid
WHERE d.tecnico_nid = x AND d.data = "2010-08-25"
ORDER BY d.hora DESC LIMIT 0,1);
  SET x = x - 1;
 END WHILE;
end $$
DELIMITER;

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...