Posts by Vitor Cardoso • 105 points
6 posts
-
0
votes3
answers17226
viewsA: Difference in Index Unique and Unique Constraint usage in Mysql?
The key: ensures the uniqueness of information in your table. (Generally unique keys may also have null records, so they may not be primary key.) A Primary key: Can be used for Foreign key…
-
1
votes2
answers2309
viewsA: Difference in Indice Unique and Unique Constraint usage in Sql Server?
The key Unique ensures the uniqueness of information in your table, the key Primary can also be used for Foreign key relationships with other tables. Usually single keys can also have null records,…
-
1
votes1
answer1641
viewsA: Mysql Workbench with autocomplete with all database columns when using table alias
I had similar problems with version 6.2.5, I had to downgrade to version 6.1.7 and the problem was solved, with me solved this way, it may be an alternative for you.
-
3
votes3
answers2734
viewsQ: How to use the REPEAT command in this algorithm?
I have the following question but could not understand how to do using the command REPITA: Write an algorithm that asks for the age of several people (USE REPEAT). Please report the total number of…
portugolasked Vitor Cardoso 105 -
2
votes1
answer4559
viewsQ: Divisible - Portugol (VISUALG)
I have the following question and below what I have tried but it is not just showing the divisible numbers that is my intention. I’m doing the test by typing the number 8, the correct one was for…
-
2
votes2
answers11063
viewsQ: How to use % in Portugol
I have the following question: Write an algorithm that calculates a worker’s salary. The user will be asked for the value of the hour worked, number of hours and the % INSS discount. At the end,…