Forum Discussion
No RepliesBe the first to reply
Related Content
- 7 years ago
- 5 months ago
Recent Discussions
- 14 hours ago
- 4 days ago
Hi, I am trying to run this query in JDBC Test Step:
SELECT ACCOUNT.ID
FROM PERSON JOIN CLIENT on PERSON.ID = client.person_id
JOIN CLIENTACCOUNTMAP on client.id = CLIENTACCOUNTMAP.CLIENT_ID
JOIN ACCOUNT on ACCOUNT.id = clientaccountmap.account_id
WHERE mobilephone = '0468 600 391'
But t doesn't return any record. But when I run from Oracle directly, records are returned just fine:
Does anyone have any idea? Thanks