<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Interfaces 103: Build Complex Interfaces by Adapting Patterns</title><link>https://community.appian.com/discussions/f/appian-community-edition/34975/interfaces-103-build-complex-interfaces-by-adapting-patterns</link><description>I am trying to import SQL file attached in the module to create Personal Finance tables in Cloud Database but I am getting below error: 
 
 -- --------------------------------------------------------

--
-- Table structure for table `PF_ACCOUNT`
--

CREATE</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Interfaces 103: Build Complex Interfaces by Adapting Patterns</title><link>https://community.appian.com/thread/135290?ContentTypeID=1</link><pubDate>Tue, 14 May 2024 14:16:30 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:dd1fc94c-09c5-4bf8-a54c-3886bfb8d5cd</guid><dc:creator>bhuvneshg0001</dc:creator><description>&lt;p&gt;Thanks &amp;nbsp;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Interfaces 103: Build Complex Interfaces by Adapting Patterns</title><link>https://community.appian.com/thread/135289?ContentTypeID=1</link><pubDate>Tue, 14 May 2024 14:16:07 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5ec1e1b7-5626-4d2e-a224-6da5dbd83d8b</guid><dc:creator>bhuvneshg0001</dc:creator><description>&lt;p&gt;Thanks &amp;nbsp;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Interfaces 103: Build Complex Interfaces by Adapting Patterns</title><link>https://community.appian.com/thread/135282?ContentTypeID=1</link><pubDate>Tue, 14 May 2024 13:34:27 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2f40ce71-d16e-4608-8b7f-4ac37422c909</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;CREATE TABLE `PF_ACCOUNT` (
  `ACCOUNT_ID` int(11) NOT NULL AUTO_INCREMENT, 
  `TYPE_ID` int(11) DEFAULT NULL,
  `BALANCE` double DEFAULT NULL,
  `NAME` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`ACCOUNT_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="/members/bhuvneshg0001"&gt;bhuvneshg0001&lt;/a&gt;&amp;nbsp;You can&amp;#39;t create table without primary key.&amp;nbsp;&lt;br /&gt;I assumed that &amp;#39;ACCOUNT_ID&amp;#39; will be a primary key.&lt;br /&gt;&lt;span&gt;A primary key is a crucial element in a relational database table,&lt;/span&gt;&lt;span&gt; and MySQL requires it for InnoDB tables (the engine you&amp;#39;re using).&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Interfaces 103: Build Complex Interfaces by Adapting Patterns</title><link>https://community.appian.com/thread/135281?ContentTypeID=1</link><pubDate>Tue, 14 May 2024 13:33:51 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e7fa3556-196f-4e25-8ac5-95be909ce114</guid><dc:creator>Karumuru Abhishek</dc:creator><description>&lt;p&gt;hi&amp;nbsp;&lt;a href="/members/bhuvneshg0001"&gt;bhuvneshg0001&lt;/a&gt;&amp;nbsp; database table must have a primary key for the Option to insert, update, restore, or delete data from a database table.&amp;nbsp;&lt;pre class="ui-code" data-mode="text"&gt;CREATE TABLE `PF_ACCOUNT` (
  `ACCOUNT_ID` int(11) NOT NULL,
  `TYPE_ID` int(11) DEFAULT NULL,
  `BALANCE` double DEFAULT NULL,
  `NAME` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`ACCOUNT_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>