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 -- kept) text/html ---
Hi Rafael,
should be this:
REPLACE (Transact-SQL) https://docs.microsoft.com/en-us/sql/t-sql/functions/replace-transact-sql?vi...
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 rafael.copquin@gmail.com 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 as
12345.67 to leave as 1234567 in TSQL
TIA Rafael Copquin
Gianni, Rafael
I would definitely recommend the VFPSQL - TSQL - Mapping article. I have found it very useful in the past.
Paul Newton
-----Original Message----- From: ProfoxTech profoxtech-bounces@leafe.com On Behalf Of Gianni Turri Sent: 02 May 2019 23:53 To: profoxtech@leafe.com Subject: [SUSPECTED SPAM] Re: TSQL 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?vi...
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 rafael.copquin@gmail.com 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 as
12345.67 to leave as 1234567 in TSQL
TIA Rafael Copquin
[excessive quoting removed by server]
select replace('12345.67', '.', '');
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 rafael.copquin@gmail.com 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 as
12345.67 to leave as 1234567 in TSQL
TIA Rafael Copquin
--- StripMime Report -- processed MIME parts --- multipart/alternative text/plain (text body -- kept) text/html
[excessive quoting removed by server]
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 ......
thanks Rafael
El vie., 3 may. 2019 a las 10:33, Stephen Russell (srussell705@gmail.com) escribió:
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 rafael.copquin@gmail.com 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 as
12345.67 to leave as 1234567 in TSQL
TIA Rafael Copquin
--- StripMime Report -- processed MIME parts --- multipart/alternative text/plain (text body -- kept) text/html
[excessive quoting removed by server]