Posts by wash albano • 11 points
2 posts
-
0
votes2
answers33
viewsA: Concatenate data from a table
SELECT a.alunonome AS aluno, m.materianome AS disciplina, **campoID-DaNota as id1,** AVG(CASE n.notabimestre WHEN 1 THEN n.nota ELSE null END) AS bim1, field D-Danota2 as id2, AVG(CASE…
-
1
votes1
answer59
viewsA: Doubts regarding data entry in the database
Yes! In the php snippet, concatenate the two (or more) values you want to save as one. E.g. practical of how to concatenate values as if it were a single variable: $variavelSo = $_POST['val1'].' |…