<?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>column</title><link>https://community.appian.com/discussions/f/general/26216/column</link><description>I have data stored in db as row wise. that data i have to show in column wise is that possible if so please let me know 
 
 data stored in database like below 
 
 
 
 
 
 Contact ID 
 
 
 Contact Limit 
 AED (000) 
 
 
 Contact Outstanding 
 (AED’000</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: column</title><link>https://community.appian.com/thread/102905?ContentTypeID=1</link><pubDate>Thu, 13 Oct 2022 15:13:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4cc6a662-245e-441b-9454-9b2abaf59cac</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;I&amp;#39;m really unclear what you&amp;#39;re trying to acomplish here based just on your original description - however i&amp;#39;ll say with some confidence that there are many different ways you can query / transform / aggregate data, and then display it however you want on an interface.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: column</title><link>https://community.appian.com/thread/102888?ContentTypeID=1</link><pubDate>Thu, 13 Oct 2022 09:11:39 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:74131827-a4ca-470c-bc43-cddfa943c086</guid><dc:creator>Aparajita Singh</dc:creator><description>&lt;p&gt;You can create a stored procedure to query data in this format and display.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: column</title><link>https://community.appian.com/thread/102873?ContentTypeID=1</link><pubDate>Thu, 13 Oct 2022 07:42:17 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:130aaa86-3763-4b1e-945e-515bc82d4b0e</guid><dc:creator>KM</dc:creator><description>&lt;p&gt;can i do it in the UI instead of creating new view?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: column</title><link>https://community.appian.com/thread/102872?ContentTypeID=1</link><pubDate>Thu, 13 Oct 2022 07:35:36 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:10f46fd6-88fa-481b-8b4b-1b1100d9e2dd</guid><dc:creator>Aparajita Singh</dc:creator><description>&lt;p&gt;Yes, I have worked on such a use case long back. We created a view by joining on the same table multiple times. The first join was on the column that we can group data on and second join on another column for which we want to create a particular column. It might be more typical if you are using record as data source. Giving an example below:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;SELECT DISTINCT
T1.REQUEST_ID as REQUEST_ID,
T2.VALUE as CONTRACT_NO,
T3.VALUE as CONTRACT_LIMIT
FROM
table T1
JOIN table T2
ON (T1.REQUEST_ID=T2.REQUEST_ID and T2.FIELD_NAME=&amp;quot;Contact No&amp;quot;)
JOIN table T3
ON (T1.REQUEST_ID=T3.REQUEST_ID and T3.FIELD_NAME=&amp;quot;Contact Limit&amp;quot;)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;You might have to group but I believe the &amp;quot;DISTINCT&amp;quot; keyword should do the trick.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>