Posts by Ricardo Zambon • 101 points
3 posts
-
0
votes1
answer36
viewsA: Merge results from 2 Select with no different fields
all right? What you can do is an INNER JOIN by the column D1_FILIAL with COD_FILIAL, you will get your desired result. SELECT MAX(SD.D1_EMISSAO) AS ULTIMA_ENTRADA ,SUD.UD_FILORI AS COD_FILIAL…
sql-serveranswered Ricardo Zambon 101 -
0
votes2
answers492
viewsA: How do I format the text typed in the input without changing the value?
Editing my original answer, you already use Cleave.JS. In Cleave.JS there is the option for you to take the RAW or Formatted number, and set which will be the decimal separator. Look at my example:…
-
0
votes2
answers721
viewsA: How to run c# in the browser?
It is not possible to execute C# code directly in the client browser, because the codes are executed on the server and only the pure HTML is returned to the client. The same concept applies to…