1
vote
2answers
41 views
Why am I only seeing the date portion of a timestamp value?
(the question says it all)
3
votes
3answers
76 views
How to output a decimal column as string ?
I have an issue only when the value is less than 1.
Table decimal column value = 0.5, Required output format = '0.5'
I am getting it as '.5' , i need it as '0.5'
select 0.5, str …
2
votes
2answers
45 views
Change SQL decimal delimiter
Hello! I am trying to import data into my table using
INPUT INTO
The problem is my decimals is using , as a delimiter, and it expects .. So it won't work!
How can i change thi …