Posts by Hugo Rutemberg • 63 points
4 posts
-
0
votes1
answer27
viewsA: Add column in mysql with groupings
I managed to solve with the code below; SELECT (P.url_img1) AS url_img, (PPV.id_cliente) AS id_cliente, (PPV.sku_produto) AS sku_produto, (P.descricao_curta) AS descicao_produto, (PPV.valor_unit) AS…
mysqlanswered Hugo Rutemberg 63 -
0
votes1
answer27
viewsQ: Add column in mysql with groupings
How to select the total of requested amount to the sku_product? I tried to use DISTINCT to group the sku_product, and failed to add the requested quantity_quantity. SELECT DISTINCT (P.url_img1) AS…
mysqlasked Hugo Rutemberg 63 -
1
votes4
answers312
viewsQ: Limit input value with Javascript
How do I limit the value in my input? I tried to use it didn’t work use min="1" and max="3" function process(quant){ var value = parseInt(document.getElementById("quant").value); value+=quant;…
-
4
votes1
answer608
viewsQ: VBA - Automatically Clear Cell Information - Event Change
The script below causes when selecting the column "H11" automatically clear the column "I11". How do I make the same script erase the I12 cell when selecting the H12 cell and so following the same…