Using wildcard operators when querying a database

Hello,

I was searching through documentation but I cannot seem to find anything pertaining to this.

Is it possible within Appian to query a database in a way that would be similar to the following SQL Query?

Select * from Table where tableID = tableID2

Basically I am trying to return rows where one column equals another column.

Thanks!

OriginalPostID-150044

OriginalPostID-150044

  Discussion posts and replies are publicly visible

Parents
  • Regarding the suggestion of using the "in operator", I'm not sure that would work. The initial query (to return array of field 2 values) would return all field 2 values. And you just want rows where that row's value for field 1 = that row's value for field 2, correct? The "in" logic would return all rows where field 1 = ANY value found in column 2, rather than where field 1 = that same row's field 2.
Reply
  • Regarding the suggestion of using the "in operator", I'm not sure that would work. The initial query (to return array of field 2 values) would return all field 2 values. And you just want rows where that row's value for field 1 = that row's value for field 2, correct? The "in" logic would return all rows where field 1 = ANY value found in column 2, rather than where field 1 = that same row's field 2.
Children
No Data