Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info
If the parent field does not have associated a child custom field, there is no need to use to search by primary key.

Example 2:

For those fields, the query should look like:

Code Block
titlePrimary Key
SELECT id as pk, fk_id, col1 FROM testTable1 WHERE fk_id = (select id from testTable2 where col = {customfield_10000});

Example 2:

In the following example we assume the results of the following query will return multiple values for the parent field:

...