
Not applicable
2016-05-17
06:05 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
SAP SQL Connector Like clause
Hi guys,
Is there a way to query SAP using the QvSAPSQLConnector with a WHERE field LIKE '*' type of clause ?
Thanks!
- Tags:
- sap connector
4,090 Views
1 Solution
Accepted Solutions


Employee
2016-05-18
03:09 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
3 Replies


Employee
2016-05-18
03:09 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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


Employee
2016-05-18
04:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can read about OPEN SQL syntax here :
/ Mats

Not applicable
2016-05-19
06:34 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Works perfectly thank you very much Tomas.
2,620 Views
