Re: TSQL equivalent of strtran function

2019-05-03 Thread Rafael Copquin
It is numeric and I have to transform it to a char (fixed length) type and do need to show the decimal point. I use cast to change it to char(15) and then the replace function, which did the job of removing the decimal point select replace(cast sales as char(15),'.','') as sales from ..

Re: TSQL equivalent of strtran function

2019-05-03 Thread Stephen Russell
What is the data type for that column? Char, VarChar, NVarchar? Or is it numeric and you are pulling the data in a select and you do not want the decimal point to show? On Thu, May 2, 2019 at 5:41 PM Rafael Copquin wrote: > Please tell what function in TSQL can I use in the same way as

Re: TSQL equivalent of strtran function

2019-05-03 Thread Alan Bourke
select replace('12345.67', '.', ''); -- Alan Bourke alanpbourke (at) fastmail (dot) fm On Thu, 2 May 2019, at 11:41 PM, Rafael Copquin wrote: > Please tell what function in TSQL can I use in the same way as STRTRAN in > VFP > > I ned to remove the point from a character expression such

RE: [SUSPECTED SPAM] Re: TSQL equivalent of strtran function

2019-05-03 Thread Paul Newton
equivalent of strtran function Sent by an external sender -- Hi Rafael, should be this: REPLACE (Transact-SQL) https://docs.microsoft.com/en-us/sql/t-sql/functions/replace-transact-sql?view=sql-server-2017 VFPSQL - TSQL - Mapping http://fox.wikis.com/wc.dll?Wiki~VFPSQL

Re: TSQL equivalent of strtran function

2019-05-02 Thread Gianni Turri
Hi Rafael, should be this: REPLACE (Transact-SQL) https://docs.microsoft.com/en-us/sql/t-sql/functions/replace-transact-sql?view=sql-server-2017 VFPSQL - TSQL - Mapping http://fox.wikis.com/wc.dll?Wiki~VFPSQL-TSQL-Mapping Gianni On Thu, 2 May 2019 19:40:40 -0300, Rafael Copquin wrote:

TSQL equivalent of strtran function

2019-05-02 Thread Rafael Copquin
Please tell what function in TSQL can I use in the same way as STRTRAN in VFP I ned to remove the point from a character expression such as 12345.67 to leave as 1234567 in TSQL TIA Rafael Copquin --- StripMime Report -- processed MIME parts --- multipart/alternative text/plain (text body --