Posts by ErickGermani • 37 points
3 posts
-
0
votes1
answer390
viewsQ: How to place ORDER BY in INNER JOIN/GROUP BY
In a chat, I need to give a SELECT in the contacts of the logged in user, but ordering them by the date of the messages The code is like this: SELECT contatos.*, contas.Key_User, contas.Login_User,…
-
0
votes1
answer118
viewsQ: How to take query repetition
I created a chat, and I have a query to display the other accounts of the site to start a conversation. I put a select all, and it displays all normally, but now I need to put an order by to sort…
-
3
votes1
answer75
viewsQ: Validation of inputs does not update
I did the following function: function verifica(){ var csenha = document.getElementById("csenha").value; var csenha2 = document.getElementById("csenha2").value; if(csenha != csenha2){…