Skip to Content (Press Enter)
OutSystems.com
Personal Edition
Community
Support
Training
Training
Online Training
Developer Schools
Boot Camps
Certifications
Tech Talks
Documentation
Documentation
Overview
ODC
O11
Forums
Forge
Get Involved
Get Involved
Jobs
Ideas
Members
Mentorship
User Groups
Platform
Platform
ODC
O11
Search in OutSystems
Log in
Get Started
Back to Forums
Henri Baar
124
Views
3
Comments
Solved
SQL syntax
Question
Hi,
Is there a way to simply send SQL syntax to the DB?
I would like to do something like "delete from CUSTOMERS where CUST_ZIP like "12"
Regards,
Henri B.
J.
MVP
Solution
well, use an advanced query.
DELETE FROM {CUSTOMERS} WHERE {CUSTOMERS}.[CUST_ZIP] LIKE '12'
if you want 12 be a variable, ad an input-parameters like Zip, and depending how you want to solve it, expand-inline or not..
with a like you probably do want expand inline, otherwise a simple one is the way
1 reply
12 Apr 2016
Show thread
Hide thread
Carlos Henriques
J.
wrote:
well, use an advanced query.
"old school" :P
Since version 9 it's just called "SQL" widget:
https://www.outsystems.com/help/servicestudio/9.1/index.htm#t=Using_Data%2FAbout_SQL.htm
Henri Baar
thanks to all.
Regards,
Henri B.
Community Guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
See the full guidelines
Loading...