Unless you are running the experimental 4.1 release of MySQL, sub-queries aren't supported, so neither is the EXISTS predicate.
You can approximate its behavior using JOIN operations, something like:
PHP Code:
SELECT a.*
FROM GRVALACD.TCRECLI AS a
JOIN GRVALACD.TCREDSAL AS b
ON (b.fk = a.pk)
WHERE b.column = 'fubar';
Where you join a to b on a key value and you specify whatever other constraints you need in the WHERE clause.
-PatP