Posts by Dweise • 74 points
4 posts
-
1
votes1
answer46
viewsA: Postgresql Query
To solve the problems I followed the following steps: 1.Obtained total sales per customer and store SELECT loja, cliente, sum(valor) AS total_vendas FROM vendas GROUP BY cliente, loja ORDER BY loja,…
postgresqlanswered Dweise 74 -
2
votes1
answer327
viewsA: How to join the cells of a table
If I understand the problem, in a simple way it is the attributes border-Spacing: 0; border-Collapse; table { width: 100%; border-spacing: 0; border-collapse: collapse; } table td { padding: 10px;…
-
3
votes2
answers1447
viewsA: Why do I need WAMP (example) for Mysql to work?
For your application to work, you need a working database server. This database server can even be on another machine as long as it is accessible over the network. Probably when you installed…
-
-1
votes2
answers838
viewsA: Pass txt database to mysql
The simplest way would be to import from a csv file. To do this you would need to use excel or equivalent and save or export as CSV. From there you can use the LOAD DATA command…