Posts by HitaloEmanoel • 46 points
3 posts
-
1
votes2
answers108
viewsA: How to make INNER JOIN between two tables?
If I understand correctly, you want to join the tables that have the same name, correct? You can try something like: SELECT nome_coluna FROM Clientes INNER JOIN Funcionarios ON Clientes.nome =…
mysqlanswered HitaloEmanoel 46 -
1
votes1
answer26
viewsA: Result equal to the last two characters of the records
'%07' will only return records finished with '07'. If the size is fixed, you can also look how the underscore works ( _ ). If you want any record that has '07' (Example XXX-0077), use '%07%'.…
-
1
votes1
answer49
viewsA: How to get values from a Textview of another Activity?
If it hasn’t changed since I used it some time ago, you can try with Intent and Bundle. In class A: Intent i = new Intent(ClasseA.this, ClasseB.class); Bundle bundle = new Bundle();…