Jump to content

POWERED BY:

Search the Community

Showing results for tags 'ultimo'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Q&A Desenvolvimento
    • Perguntas e respostas rápidas
  • Web Development
    • HTML e CSS
    • Javascript
    • PHP
    • Ruby
    • Python
    • Java
    • .NET
    • Docker, Kubernets and other environments
    • WordPress
    • Mobile
    • Agile
    • Desenvolvimento de Games
    • Banco de Dados
    • Design and UX
    • Algoritmos & Outras Tecnologias
  • Entretenimento e uso pessoal
    • Segurança & Malwares
    • Geral
    • iMasters's pub

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Google+


Hangouts


Skype


Twitter


deviantART


Github


Flickr


LinkedIn


Pinterest


Facebook


Site Pessoal


Localização


Interesses

Found 2 results

  1. Prezados, boa tarde. No meu banco de dados tenho registro de estoque de alguns produtos e suas respectivas unidades. Eu gostaria que a query só trouxesse o último registro dos produtos daquela unidade. Utilizo Mysql como banco de dados. Segue minha Query abaixo: SELECT A.ID_ESTOQUE, D.CNES, D.NOME_UNIDADE, B.COBERTURA, A.QTD, C.DATA_REGISTRO FROM lesao_rel_estoque_coberturas A INNER JOIN lesao_coberturas B ON A.ID_COBERTURA = B.ID_COBERTURA INNER JOIN lesao_estoque C ON A.ID_ESTOQUE = C.ID_ESTOQUE INNER JOIN unidades D ON C.CNES = D.CNES ORDER BY A.ID_ESTOQUE Agradeço a todos desde já pela ajuda.
  2. viniciuslemmos

    Ultimo registro de cada categoria

    SELECT MAX(`noticias`.`noticia_id`) AS `Nnoticia_id`, MAX(`categoria`.`imagem`) AS `Cimagem`, MAX(`categoria`.`nome`) AS `Cnome`, MAX(`noticias`.`titulo`) AS `Ntitulo`, MAX(`noticias`.`data_criacao`) AS `Ndata_criacao`, MAX(`categoria`.`url`) AS `Curl`, MAX(`noticias`.`url`) AS `Nurl` FROM `noticias` INNER JOIN `categoria` WHERE `noticias`.`categoria_id` = `blog`.`categoria_id` GROUP BY `noticias`.`categoria_id` ORDER BY `noticia_id` DESC Como consigo a ultima noticia de cada categoria? Nessa acima o titulo que imprime não é o ultimo
×

Important Information

Ao usar o fórum, você concorda com nossos Terms of Use.