Posts by Fábio Gouveia • 15 points
2 posts
-
1
votes1
answer365
viewsQ: Render table cell image size
I created a java table that shows my images stored in blob in the database. However the height of the table is not automatically resized having to put a value manually, for example:…
-
0
votes1
answer94
viewsQ: Taking data from a table from grades average of another table?
Tabela - lista id | nota 1 | 10 2 | 8 3 | 7 1 | 8 3 | 9 I want to average the notes of those who have the same ID, and for that I created the following query: SELECT AVG(nota) FROM lista GROUP BY id…