Posts by Vinicius Barbosa da Silva • 36 points
1 post
-
2
votes1
answer51
viewsA: Take multiple rows from a table in the database with the same name and display the name only once in a list
You can use the instruction DISTINCT to return only the different elements in your table. Your appointment would look like this: SELECT DISTINCT nomeFicha FROM ficha;…