<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>hive questions - Wikitechy</title>
	<atom:link href="https://www.wikitechy.com/interview-questions/tag/hive-questions/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.wikitechy.com/interview-questions/tag/hive-questions/</link>
	<description>Interview Questions</description>
	<lastBuildDate>Sat, 11 Sep 2021 11:49:31 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.wikitechy.com/interview-questions/wp-content/uploads/2025/10/cropped-wikitechy-icon-32x32.png</url>
	<title>hive questions - Wikitechy</title>
	<link>https://www.wikitechy.com/interview-questions/tag/hive-questions/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>What is the difference between &#8216;select from table&#8217; and &#8216;select column from table&#8217; in hive ?</title>
		<link>https://www.wikitechy.com/interview-questions/hive/what-is-the-difference-between-select-from-table-and-select-column-from-table-in-hive/</link>
					<comments>https://www.wikitechy.com/interview-questions/hive/what-is-the-difference-between-select-from-table-and-select-column-from-table-in-hive/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Tue, 13 Jul 2021 22:18:52 +0000</pubDate>
				<category><![CDATA[Hive]]></category>
		<category><![CDATA[Accenture interview questions and answers]]></category>
		<category><![CDATA[Altimetrik India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[ANI Technologies Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Capgemini interview questions and answers]]></category>
		<category><![CDATA[CASTING NETWORKS INDIA PVT LIMITED interview questions and answers]]></category>
		<category><![CDATA[CGI Group Inc interview questions and answers]]></category>
		<category><![CDATA[Collabera Technologies interview questions and answers]]></category>
		<category><![CDATA[Dell International Services India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[explain in hive]]></category>
		<category><![CDATA[explain the difference between sql and apache hive.]]></category>
		<category><![CDATA[Flipkart interview questions and answers]]></category>
		<category><![CDATA[Genpact interview questions and answers]]></category>
		<category><![CDATA[hive interview questions]]></category>
		<category><![CDATA[hive interview questions and answers]]></category>
		<category><![CDATA[hive query based interview questions]]></category>
		<category><![CDATA[hive query without mapreduce]]></category>
		<category><![CDATA[hive questions]]></category>
		<category><![CDATA[hive scenario based interview questions]]></category>
		<category><![CDATA[how will you optimize hive performance]]></category>
		<category><![CDATA[IBM interview questions and answers]]></category>
		<category><![CDATA[Impetus Technologies interview questions and answers]]></category>
		<category><![CDATA[Indiabulls Technology Solutions Ltd interview questions and answers]]></category>
		<category><![CDATA[Mindtree interview questions and answers]]></category>
		<category><![CDATA[NetApp interview questions and answers]]></category>
		<category><![CDATA[Prokarma Softech Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[R Systems interview questions and answers]]></category>
		<category><![CDATA[Reliance Industries Ltd interview questions and answers]]></category>
		<category><![CDATA[Synechron Te interview questions and answers]]></category>
		<category><![CDATA[Tata Consultancy Service interview questions and answers]]></category>
		<category><![CDATA[Tech Mahindra interview questions and answers]]></category>
		<category><![CDATA[Trigent Software interview questions and answers]]></category>
		<category><![CDATA[UnitedHealth Group interview questions and answers]]></category>
		<category><![CDATA[Virtusa Consulting Services Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Wells Fargo interview questions and answers]]></category>
		<category><![CDATA[Wipro Infotech interview questions and answers]]></category>
		<category><![CDATA[Wipro interview questions and answers]]></category>
		<category><![CDATA[Yash Technologies interview questions and answers]]></category>
		<category><![CDATA[Yodlee Infotech Pvt Ltd interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=602</guid>

					<description><![CDATA[Answer : Table in Hive is stored as a directory in the HDFS...]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<h2 id="difference-between-select-from-table-and-select-column-from-table-in-hive" class="color-green" style="text-align: justify;">Difference between &#8216;select * from table&#8217; and &#8216;select column from table&#8217; in hive</h2>
</div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>Table in Hive is stored as a directory in the HDFS.</li>
<li>Using select from table the Hive query processor simply goes directory that have one or more files in table schema.</li>
<li>You may do this if you have very small data like less than a Gigabyte.</li>
<li>In real clusters if you hit ‘select * from table’, it may have data in Terabytes and displaying that will run for long time.</li>
<li>Hive achieved sequence of map reduce programs that reads data from table stored on Hadoop Distributed File System.</li>
<li>Any data processing you do in Hive is achieved through sequence of map reduce programs that reads data from table stored on HDFS.</li>
<li>Hive map reduce based on query processing engine.</li>
<li>Tables have wide number of columns that representing different values.To perform select column the map reduce program will scan all rows and extract a column.</li>
</ul>
</div>
</div>
<div class="text-center row" style="text-align: justify;">
<div class="col-sm-12">
<div id="bsa-zone_1590522538159-8_123456"></div>
</div>
</div>
<div class="ImageContent">
<div class="hddn" style="text-align: justify;"><a href="https://cdn.wikitechy.com/interview-questions/hive/select-from-table-and-select-column-from-table-in-hive.png"><img decoding="async" class="aligncenter size-medium" src="https://cdn.wikitechy.com/interview-questions/hive/select-from-table-and-select-column-from-table-in-hive.png" alt="select-from-table-and-select-column-from-table-in-hive" width="288" height="149" /></a></div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/hive/what-is-the-difference-between-select-from-table-and-select-column-from-table-in-hive/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
