Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys,
Is there a way to query SAP using the QvSAPSQLConnector with a WHERE field LIKE '*' type of clause ?
Thanks!
Hi Ricardo,
You can use LIKE statement in SELECT queries. But instead of "*", "%" is used as wildcard, like this:
SELECT field FROM table WHERE field LIKE 'prefix%';
Regards,
// Thomas
Hi Ricardo,
You can use LIKE statement in SELECT queries. But instead of "*", "%" is used as wildcard, like this:
SELECT field FROM table WHERE field LIKE 'prefix%';
Regards,
// Thomas
You can read about OPEN SQL syntax here :
/ Mats
Works perfectly thank you very much Tomas.