Posts by Heitor Scalabrini • 781 points
52 posts
-
2
votes2
answers284
viewsA: SQL Oracle - Clob to Number
The problem is the values with point and not comma, to convert to numeric value you need to do a REPLACE, Replacing . (dot) by , (comma) Following example: --CRIANDO TABELA TESTE CREATE TABLE…
-
0
votes1
answer51
viewsA: Query problem to filter different fields in the same SQL table
I noticed some errors in your code: from stinsights.user_usage as u join stinsights.user_usage as u2 o código aqui You are doing a stinsights.user_usage table and then you are relating to yourself…