<?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[api sql question...]]></title><description><![CDATA[<p dir="auto">How do I call a empty column? I have tried all SQL statement possibles and it does not work...</p>
]]></description><link>https://community.appdrag.com/topic/824/api-sql-question</link><generator>RSS for Node</generator><lastBuildDate>Tue, 15 Sep 2026 17:48:49 GMT</lastBuildDate><atom:link href="https://community.appdrag.com/topic/824.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 30 Apr 2021 19:16:38 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to api sql question... on Sun, 02 May 2021 14:03:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/337">@Pablo-Garcia</a></p>
<p dir="auto">I'm confused by the word VALUE in your query. I am pretty sure that is causing the issue.</p>
<p dir="auto">If you're coming from a different SQL platform, you should be aware that CloubBackend uses MySQL 5.8 via AWS Aurora, so your queries have to adhere to that syntax.</p>
<p dir="auto">I think if you simply removed "VALUE" from most of your queries above things might start working <img src="https://community.appdrag.com/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=lfk1vimvd74" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" title=":)" alt="🙂" /></p>
]]></description><link>https://community.appdrag.com/post/3381</link><guid isPermaLink="true">https://community.appdrag.com/post/3381</guid><dc:creator><![CDATA[Daniel Mulroy]]></dc:creator><pubDate>Sun, 02 May 2021 14:03:46 GMT</pubDate></item><item><title><![CDATA[Reply to api sql question... on Sat, 01 May 2021 16:49:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/337">@Pablo-Garcia</a> here could you provide your full SQL query and code? probably your code is calling an SQL query ... but since you didn't provided anything we can only guess <img src="https://community.appdrag.com/plugins/nodebb-plugin-emoji/emoji/android/1f609.png?v=lfk1vimvd74" class="not-responsive emoji emoji-android emoji--wink" title=";)" alt="😉" /></p>
<p dir="auto">also your partial syntax seems wrong</p>
<p dir="auto">It should be:</p>
<pre><code>SELECT * FROM Table WHERE column_name != 'YOUR_VALUE' AND column_name IS NOT NULL;
</code></pre>
]]></description><link>https://community.appdrag.com/post/3378</link><guid isPermaLink="true">https://community.appdrag.com/post/3378</guid><dc:creator><![CDATA[Joseph Benguira]]></dc:creator><pubDate>Sat, 01 May 2021 16:49:53 GMT</pubDate></item><item><title><![CDATA[Reply to api sql question... on Fri, 30 Apr 2021 22:57:24 GMT]]></title><description><![CDATA[<p dir="auto">Thanks Daniel for you response.</p>
<p dir="auto">my question it's about the API call on appdrag.</p>
<p dir="auto">for example I use</p>
<p dir="auto">column_name != VALUE ''  &lt;&lt;&lt; this is not working<br />
column_name != VALUE    &lt;&lt;&lt; this is not working<br />
column_name != VALUE "" &lt;&lt;&lt; this is not working<br />
column_name is  VALUE  NOT NULL  &lt;&lt;&lt; this is not working</p>
<p dir="auto">column name is a text field</p>
<p dir="auto">also i tried with another column that is a boolean this</p>
<p dir="auto">another_column_name is VALUE FALSE &lt;&lt;&lt; this is not working</p>
<p dir="auto">I have tried all SQL statements possibles but on the API do not work</p>
]]></description><link>https://community.appdrag.com/post/3373</link><guid isPermaLink="true">https://community.appdrag.com/post/3373</guid><dc:creator><![CDATA[Pablo Garcia]]></dc:creator><pubDate>Fri, 30 Apr 2021 22:57:24 GMT</pubDate></item><item><title><![CDATA[Reply to api sql question... on Fri, 30 Apr 2021 20:39:06 GMT]]></title><description><![CDATA[<p dir="auto">Hi Pablo, I'm not sure what you mean. Are you trying to find rows where a certain column is empty?</p>
<p dir="auto">I usually use:</p>
<pre><code>SELECT * FROM Table WHERE Column IS NULL OR = ""
</code></pre>
]]></description><link>https://community.appdrag.com/post/3372</link><guid isPermaLink="true">https://community.appdrag.com/post/3372</guid><dc:creator><![CDATA[Daniel Mulroy]]></dc:creator><pubDate>Fri, 30 Apr 2021 20:39:06 GMT</pubDate></item></channel></rss>