Posts by Thomás Pereira • 123 points
3 posts
-
0
votes1
answer46
viewsA: Resize Uitextview according to the amount of content
You are using Autolayout? If yes, uncheck the option Scrolling Enabled in the Uitextview... ... remove height Constraint (if any) and set priorities Content Hugging and Content Compressions for…
-
0
votes3
answers1596
viewsA: How to order records in the query according to another ordination?
Why don’t you just put it all in one session? I created something similar to your scenario and managed to get the result using: select d1.id_gerencial, d1.valor as valor_a_ratear, (select…
-
0
votes4
answers15818
viewsA: Add and Subtract value from same SQL column
Try the query below: select cod_Art, sum(case when armazem = 4 then -quant else quant end) as 'quant' from ccartigos_stock group by cod_Art order by cod_Art…