<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic MySQL and Number Data Type in JSON in Workato Pros Discussion Board</title>
    <link>https://systematic.workato.com/t5/workato-pros-discussion-board/mysql-and-number-data-type-in-json/m-p/2072#M851</link>
    <description>&lt;P&gt;I am trying to add two datapills which is decimal in MySQL and Number in my JSON Format input schema in My recipe while making API Calls&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;, but somehow its not able to add, i even tried formula mode, how to resolve this?&lt;/P&gt;</description>
    <pubDate>Thu, 06 Jan 2022 17:42:07 GMT</pubDate>
    <dc:creator>harendra</dc:creator>
    <dc:date>2022-01-06T17:42:07Z</dc:date>
    <item>
      <title>MySQL and Number Data Type in JSON</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/mysql-and-number-data-type-in-json/m-p/2072#M851</link>
      <description>&lt;P&gt;I am trying to add two datapills which is decimal in MySQL and Number in my JSON Format input schema in My recipe while making API Calls&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;, but somehow its not able to add, i even tried formula mode, how to resolve this?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 17:42:07 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/mysql-and-number-data-type-in-json/m-p/2072#M851</guid>
      <dc:creator>harendra</dc:creator>
      <dc:date>2022-01-06T17:42:07Z</dc:date>
    </item>
    <item>
      <title>Re: MySQL and Number Data Type in JSON</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/mysql-and-number-data-type-in-json/m-p/2073#M852</link>
      <description>&lt;P&gt;Looks like an issue with the formula you're using. Can you share it in the thread? &lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 18:34:20 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/mysql-and-number-data-type-in-json/m-p/2073#M852</guid>
      <dc:creator>pluitel</dc:creator>
      <dc:date>2022-01-06T18:34:20Z</dc:date>
    </item>
    <item>
      <title>Re: MySQL and Number Data Type in JSON</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/mysql-and-number-data-type-in-json/m-p/2074#M853</link>
      <description>&lt;P&gt;It looks like the pill you’ve mapped has empty string. You could use null safe expression “&amp;amp;” to resolve it. What formula are you using can you post a picture of your input data mapping and the formula?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 20:49:24 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/mysql-and-number-data-type-in-json/m-p/2074#M853</guid>
      <dc:creator>deepak23shastri</dc:creator>
      <dc:date>2022-01-06T20:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: MySQL and Number Data Type in JSON</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/mysql-and-number-data-type-in-json/m-p/2075#M854</link>
      <description>&lt;P&gt;Here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 06 Jan 2022 21:04:11 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/mysql-and-number-data-type-in-json/m-p/2075#M854</guid>
      <dc:creator>harendra</dc:creator>
      <dc:date>2022-01-06T21:04:11Z</dc:date>
    </item>
    <item>
      <title>Re: MySQL and Number Data Type in JSON</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/mysql-and-number-data-type-in-json/m-p/2076#M855</link>
      <description>&lt;P&gt;Here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 06 Jan 2022 21:04:24 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/mysql-and-number-data-type-in-json/m-p/2076#M855</guid>
      <dc:creator>harendra</dc:creator>
      <dc:date>2022-01-06T21:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: MySQL and Number Data Type in JSON</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/mysql-and-number-data-type-in-json/m-p/2077#M856</link>
      <description>&lt;P&gt;It looks like you’re trying to add these values in the totalBalance field. One of them is null and you can’t add null and a number. You would have to write the formula &lt;BR /&gt;(totalBalance.present? ? totalBalance : 0) + (deposit amount.present? ? Deposit amount : 0)&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 21:09:29 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/mysql-and-number-data-type-in-json/m-p/2077#M856</guid>
      <dc:creator>deepak23shastri</dc:creator>
      <dc:date>2022-01-06T21:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: MySQL and Number Data Type in JSON</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/mysql-and-number-data-type-in-json/m-p/2078#M857</link>
      <description>&lt;P&gt;That should fix it&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 21:09:36 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/mysql-and-number-data-type-in-json/m-p/2078#M857</guid>
      <dc:creator>deepak23shastri</dc:creator>
      <dc:date>2022-01-06T21:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: MySQL and Number Data Type in JSON</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/mysql-and-number-data-type-in-json/m-p/2079#M858</link>
      <description>&lt;DIV class="WordSection1"&gt;&lt;P class="MsoNormal"&gt;&lt;SPAN lang="EN-US"&gt;It looks like you’re updating with a NULL value which isn’t allowed.&lt;BR /&gt;&lt;BR /&gt;If you accumulate the data to a table, then you can check that table to find out.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;SPAN lang="EN-US"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 07 Jan 2022 00:12:04 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/mysql-and-number-data-type-in-json/m-p/2079#M858</guid>
      <dc:creator>roland-daane</dc:creator>
      <dc:date>2022-01-07T00:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: MySQL and Number Data Type in JSON</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/mysql-and-number-data-type-in-json/m-p/2080#M859</link>
      <description>&lt;P&gt;Thank you, Problem Solved.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jan 2022 15:11:28 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/mysql-and-number-data-type-in-json/m-p/2080#M859</guid>
      <dc:creator>harendra</dc:creator>
      <dc:date>2022-01-07T15:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: MySQL and Number Data Type in JSON</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/mysql-and-number-data-type-in-json/m-p/2081#M860</link>
      <description>&lt;P&gt;Okay Roland, My issue is resolved but I will try that too. Thank You.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jan 2022 15:30:32 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/mysql-and-number-data-type-in-json/m-p/2081#M860</guid>
      <dc:creator>harendra</dc:creator>
      <dc:date>2022-01-07T15:30:32Z</dc:date>
    </item>
  </channel>
</rss>

