<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Link SQL dropdown with other table?]]></title><description><![CDATA[<p dir="auto">Is there a built in SQL Feature for this or do we need to use an API function?</p>
<p dir="auto">Example:</p>
<ul>
<li>I have 1 table with items, 1 column have name.</li>
<li>Another table have multi-dropdown ["name1","name2"]</li>
</ul>
<p dir="auto">It would be convenient if we could populate the multi-dropdown with values from the other table (Value picker), is that possible?</p>
]]></description><link>https://community.appdrag.com/topic/917/link-sql-dropdown-with-other-table</link><generator>RSS for Node</generator><lastBuildDate>Sat, 15 Aug 2026 06:22:59 GMT</lastBuildDate><atom:link href="https://community.appdrag.com/topic/917.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 29 Jul 2021 09:53:35 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Link SQL dropdown with other table? on Sun, 01 Aug 2021 10:02:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/208">@thomasd</a> it's displayed in the auto generated API function documentation (when you are editing a cloud function, click on Documentation on the right side)</p>
]]></description><link>https://community.appdrag.com/post/3745</link><guid isPermaLink="true">https://community.appdrag.com/post/3745</guid><dc:creator><![CDATA[Joseph Benguira]]></dc:creator><pubDate>Sun, 01 Aug 2021 10:02:49 GMT</pubDate></item><item><title><![CDATA[Reply to Link SQL dropdown with other table? on Fri, 30 Jul 2021 11:41:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/16">@joseph-benguira</a></p>
<p dir="auto">Thanks, I was using the visual select and was hoping this was implemented. Is it in the documentation? I couldn't find anything.</p>
]]></description><link>https://community.appdrag.com/post/3739</link><guid isPermaLink="true">https://community.appdrag.com/post/3739</guid><dc:creator><![CDATA[ThomasD]]></dc:creator><pubDate>Fri, 30 Jul 2021 11:41:28 GMT</pubDate></item><item><title><![CDATA[Reply to Link SQL dropdown with other table? on Fri, 30 Jul 2021 11:28:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/208">@thomasd</a> if it's a Visual Select function you can use AD_PageNbr &amp; AD_PageSize parameters to control how many rows are returned per page and what is the current page number</p>
<pre><code>var settings = {
    "url": "https://xxxxxxxxxx.appdrag.site/api/test",
    "data": {
        "AD_PageNbr" : "1",
        "AD_PageSize" : "500"
    },
    "method": "POST",
    "async": true,
    "crossDomain": true,
    "processData": true
};
$.ajax(settings).done(function (response) {
    console.log(response); // TODO: Do something with the result
});
</code></pre>
<p dir="auto">if you use other kind of cloud functions you have to implement the offset yourself<br />
<a href="https://www.sqlshack.com/learn-mysql-what-is-pagination/" rel="nofollow ugc">https://www.sqlshack.com/learn-mysql-what-is-pagination/</a></p>
]]></description><link>https://community.appdrag.com/post/3738</link><guid isPermaLink="true">https://community.appdrag.com/post/3738</guid><dc:creator><![CDATA[Joseph Benguira]]></dc:creator><pubDate>Fri, 30 Jul 2021 11:28:00 GMT</pubDate></item><item><title><![CDATA[Reply to Link SQL dropdown with other table? on Thu, 29 Jul 2021 15:35:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/16">@joseph-benguira</a></p>
<p dir="auto">Thank you, I'll try that.</p>
<p dir="auto">Do you have any tips on how to split sql results into multiple pages?</p>
]]></description><link>https://community.appdrag.com/post/3731</link><guid isPermaLink="true">https://community.appdrag.com/post/3731</guid><dc:creator><![CDATA[ThomasD]]></dc:creator><pubDate>Thu, 29 Jul 2021 15:35:40 GMT</pubDate></item><item><title><![CDATA[Reply to Link SQL dropdown with other table? on Thu, 29 Jul 2021 15:31:09 GMT]]></title><description><![CDATA[<p dir="auto">Hey <a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/208">@thomasd</a>, if you are talking about the Database Editor, yes you can configure your field to be a "Linked Fields by values" on and point to the other table / col, you will then have a tag input where you can select one or multiples values from the other table in your field</p>
]]></description><link>https://community.appdrag.com/post/3730</link><guid isPermaLink="true">https://community.appdrag.com/post/3730</guid><dc:creator><![CDATA[Joseph Benguira]]></dc:creator><pubDate>Thu, 29 Jul 2021 15:31:09 GMT</pubDate></item></channel></rss>