× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Dennis Lovelady wrote:
Thank you, Luis! Yes, I should have thought of CAST.

sjl wrote:
Wrap the SUBSTR's with a CAST to convert them to numeric,
and I believe you've got the problem solved.
Luis wrote:
I think you could do something like this:
*********
Select
Substr(foocol, 1, position(' ', foocol) - 1) as N1,
Substr(foocol, position(' ', foocol) + 1) as N2
FROM footab
*********
Not very sure about the exact syntax, as I'm not near a
computer right now.

Having said that, on V5R3 the statement's choking on the comma
within position( , ). I suspect that position is not a function
defined in V5R3.
Still in search for that pesky function like %SCAN in RPG or
INSPECT in COBOL or C's strstr() ... (Again, though I did have
the parms backward, the mySQL equivalent is instr().)


A comma is incorrect syntax for POSITION; change the function to either LOCATE or POSSTR, or replace the comma with the token IN.

Searching InfoCenter on a known SQL built-in function name in my experience is best effected with: sql scalar position
The search results should list "Scalar functions" and perhaps "Built-in functions", from which LOCATE, POSITION, and POSSTR should be found, even in v5r3. The syntax for each:

>>-LOCATE--(--search-string--,--source-string--+----------+--)-><
'-,--start-'

>>-+-POSITION--(--search-string--IN--source-string--)-+--------><

>>-+-POSSTR--(--source-string--,--search-string--)----+--------><

Regards, Chuck

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.