<?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>DELETE JOIN &#8211; Database Research &amp; Development</title>
	<atom:link href="https://www.dbrnd.com/tag/delete-join/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.dbrnd.com</link>
	<description>BIGData &#124; NoSQL &#124; MSSQL &#124; MySQL &#124; PostgreSQL</description>
	<lastBuildDate>Fri, 20 Apr 2018 18:59:05 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.4</generator>
	<item>
		<title>PostgreSQL: DELETE JOIN with an example</title>
		<link>https://www.dbrnd.com/2018/04/postgresql-delete-join-with-an-example/</link>
					<comments>https://www.dbrnd.com/2018/04/postgresql-delete-join-with-an-example/#comments</comments>
		
		<dc:creator><![CDATA[Anvesh Patel]]></dc:creator>
		<pubDate>Fri, 20 Apr 2018 16:16:52 +0000</pubDate>
				<category><![CDATA[PostgreSQL]]></category>
		<category><![CDATA[Anvesh Patel]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[database research and development]]></category>
		<category><![CDATA[dbrnd]]></category>
		<category><![CDATA[DELETE from Select]]></category>
		<category><![CDATA[DELETE INNER JOIN]]></category>
		<category><![CDATA[DELETE JOIN]]></category>
		<category><![CDATA[plpgsql]]></category>
		<category><![CDATA[Postgres Query]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[PostgreSQL Administrator]]></category>
		<category><![CDATA[PostgreSQL Error]]></category>
		<category><![CDATA[PostgreSQL Monitoring]]></category>
		<category><![CDATA[PostgreSQL Performance Tuning]]></category>
		<category><![CDATA[PostgreSQL Programming]]></category>
		<category><![CDATA[PostgreSQL Tips and Tricks]]></category>
		<guid isPermaLink="false">https://www.dbrnd.com/?p=7269</guid>

					<description><![CDATA[In this post, I am sharing a simple example of DELETE INNER JOIN statement in PostgreSQL. Many of the database developers are exploring the PostgreSQL so DELETE a table from another table which is a very common requirement so I am sharing a simple example. PostgreSQL: Update the Table data using Subquery Create two sample [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fwww.dbrnd.com%2F2018%2F04%2Fpostgresql-delete-join-with-an-example%2F&amp;linkname=PostgreSQL%3A%20DELETE%20JOIN%20with%20an%20example" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_twitter" href="https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Fwww.dbrnd.com%2F2018%2F04%2Fpostgresql-delete-join-with-an-example%2F&amp;linkname=PostgreSQL%3A%20DELETE%20JOIN%20with%20an%20example" title="Twitter" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Fwww.dbrnd.com%2F2018%2F04%2Fpostgresql-delete-join-with-an-example%2F&amp;linkname=PostgreSQL%3A%20DELETE%20JOIN%20with%20an%20example" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_pinterest" href="https://www.addtoany.com/add_to/pinterest?linkurl=https%3A%2F%2Fwww.dbrnd.com%2F2018%2F04%2Fpostgresql-delete-join-with-an-example%2F&amp;linkname=PostgreSQL%3A%20DELETE%20JOIN%20with%20an%20example" title="Pinterest" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_reddit" href="https://www.addtoany.com/add_to/reddit?linkurl=https%3A%2F%2Fwww.dbrnd.com%2F2018%2F04%2Fpostgresql-delete-join-with-an-example%2F&amp;linkname=PostgreSQL%3A%20DELETE%20JOIN%20with%20an%20example" title="Reddit" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_pocket" href="https://www.addtoany.com/add_to/pocket?linkurl=https%3A%2F%2Fwww.dbrnd.com%2F2018%2F04%2Fpostgresql-delete-join-with-an-example%2F&amp;linkname=PostgreSQL%3A%20DELETE%20JOIN%20with%20an%20example" title="Pocket" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fwww.dbrnd.com%2F2018%2F04%2Fpostgresql-delete-join-with-an-example%2F&#038;title=PostgreSQL%3A%20DELETE%20JOIN%20with%20an%20example" data-a2a-url="https://www.dbrnd.com/2018/04/postgresql-delete-join-with-an-example/" data-a2a-title="PostgreSQL: DELETE JOIN with an example"></a></p><p>In this post, I am sharing a simple example of DELETE INNER JOIN statement in PostgreSQL. </p>
<p>Many of the database developers are exploring the PostgreSQL so DELETE a table from another table which is a very common requirement so I am sharing a simple example. </p>
<blockquote class="wp-embedded-content" data-secret="YTAT0grvrB"><p><a href="https://www.dbrnd.com/2016/03/postgresql-update-the-table-data-using-subquery/">PostgreSQL: Update the Table data using Subquery</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted"  src="https://www.dbrnd.com/2016/03/postgresql-update-the-table-data-using-subquery/embed/#?secret=YTAT0grvrB" data-secret="YTAT0grvrB" width="600" height="338" title="&#8220;PostgreSQL: Update the Table data using Subquery&#8221; &#8212; Database Research &amp; Development" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>
<p><strong>Create two sample tables with data:</strong></p>
<pre class="crayon-plain-tag">CREATE TABLE ABC (ID INT, Name CHARACTER VARYING);
CREATE TABLE XYZ (ID INT, Name CHARACTER VARYING);

INSERT INTO ABC VALUES (1,'aaa'),(2,'bbb'),(3,'ccc');
INSERT INTO XYZ VALUES (1,'zzz'),(2,'yyy'),(3,'xxx'),(4,'www');</pre> </p>
<p><strong>DELETE INNER JOIN:</strong></p>
<pre class="crayon-plain-tag">DELETE FROM XYZ X
USING ABC AS A
WHERE A.ID = X.ID</pre> </p>
<p><strong>Check the result:</strong></p>
<pre class="crayon-plain-tag">SELECT *FROM XYZ;

id   |  name
----------------------
4    |  www</pre> </p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.dbrnd.com/2018/04/postgresql-delete-join-with-an-example/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
	</channel>
</rss>
