Posts by beatriz • 26 points
3 posts
-
0
votes2
answers1132
viewsA: Functions and procedures in Portugol
From what I understand from your code, we’re missing a variable to return the sum response. program { variavel int n1, n2, resp escreva ("Digite n1: ") leia n1 escreva ("Digite n2: ") leia n2 resp =…
-
0
votes2
answers387
viewsA: Error trying to create table in mysql - Multiple Primary key defined
Your error is giving 'Multiiple Primary key'' because per table there can only be a primary key, if you have the requester’s Cpf then this will be a primary key and for the other fields you want to…
-
1
votes3
answers91
viewsA: Edit only one table row
I found a solution but using only isolated Mysql, you can try to adapt pro PHP. In pure MYSQL we use: update (name_table) set Name = José Augusto Where id = '2'; the above code ta in pure mysql,…