Posts by kid Ferreira • 13 points
3 posts
-
0
votes1
answer40
viewsA: How to catch the latest releases of an Inner Join
I’ll post like I did. select itensVenda.idVenda, itensVenda.idProd, itensVenda.qtd, produtos.id, produtos.descricao, produtos.foto, venda.id, venda.valor from produtos INNER JOIN itensVenda ON…
-
1
votes1
answer40
viewsQ: How to catch the latest releases of an Inner Join
Staff to making a query in 3 tables with Internet, follow the code: select itensVenda.idVenda, itensVenda.idProd, itensVenda.qtd, produtos.id, produtos.descricao, produtos.foto, venda.id,…
-
0
votes1
answer67
viewsQ: Getting category of a table in Mysql
Staff I have a product registration table and in it I have categories: $consulta = mysql_query('select categoria from produtos order by categoria'); while ($var=mysql_fetch_array($consulta)) { echo…