Posts by D Wojcik • 11 points
3 posts
-
0
votes3
answers37
viewsA: List of vehicles that are without photos
I believe that solves your problem SELECT v.* FROM tbVeiculo v WHERE v.id NOT IN (SELECT i.id_veiculo FROM tbImagemVeiculo i INNER JOIN tbTipoImagem t ON i.id = t.id_tipo)…
-
0
votes2
answers43
viewsA: Mysql Help with INNER JOIN
No, you are wrong. Until it works, but after 92 started to use INNER Join SELECT * FROM student to INNER JOIN relationship r ON (r.aluno_id = a.id) INNER JOIN teacher p ON (p.id = r.professor_id)…
-
1
votes2
answers91
viewsA: jquery: change the style of a div depending on the text/number in it
I would use a date type identifier on each div, so I know which is which ex: date-id="2" date-color="yellow" In jquery I would use $(this). attr("data-id") to capture the value and which object I…