Posts by demolion • 31 points
2 posts
-
1
votes2
answers309
viewsQ: SQL update query syntax error
When I run the following update query there is a syntax error before or inside from: UPDATE Artigos SET totale = entradas.sent FROM Artigos INNER JOIN (SELECT cod_artigo, Sum([quantidade_ent]) AS…
-
2
votes1
answer198
viewsQ: access - subtraction in query duplicates values
I coded the following queries: Somantradastotal: SELECT artigos.Nome, Sum(Entradas.quantidade_ent) AS [Total Entradas] FROM artigos INNER JOIN Entradas ON artigos.Cod_artigo = Entradas.Cod_artigo…