<?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>hihn.org &#187; postgres</title>
	<atom:link href="http://hihn.org/tag/postgres/feed/" rel="self" type="application/rss+xml" />
	<link>http://hihn.org</link>
	<description></description>
	<lastBuildDate>Sat, 26 Jun 2010 23:10:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PostgreSQL Timestamp zu Unix Timestamp</title>
		<link>http://hihn.org/2009/02/postgresql-timestamp-zu-unix-timestamp/</link>
		<comments>http://hihn.org/2009/02/postgresql-timestamp-zu-unix-timestamp/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 10:56:17 +0000</pubDate>
		<dc:creator>rh</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[postgres]]></category>
		<category><![CDATA[PostgreSQL]]></category>

		<guid isPermaLink="false">https://hihn.org/?p=353</guid>
		<description><![CDATA[So kann man aus einem PostgreSQL Timestamp einen Unix Timestamp machen: select extract(epoch from "timestamp"(postgres_timestamp)) as unix_timestamp from table]]></description>
			<content:encoded><![CDATA[<p>So kann man aus einem PostgreSQL Timestamp einen Unix Timestamp machen:</p>
<pre>
select  extract(epoch from "timestamp"(<strong>postgres_timestamp</strong>)) as <strong>unix_timestamp</strong> from table
</pre>
]]></content:encoded>
			<wfw:commentRss>http://hihn.org/2009/02/postgresql-timestamp-zu-unix-timestamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tabellen unter PostgreSQL anzeigen lassen</title>
		<link>http://hihn.org/2008/12/tabellen-unter-postgresql-anzeigen-lassen/</link>
		<comments>http://hihn.org/2008/12/tabellen-unter-postgresql-anzeigen-lassen/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 14:56:49 +0000</pubDate>
		<dc:creator>rh</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[postgres]]></category>
		<category><![CDATA[PostgreSQL]]></category>

		<guid isPermaLink="false">http://hihn.org/?p=278</guid>
		<description><![CDATA[So kann man sich die Tabellen einer Datenbank unter PostgreSQL anzeigen lassen: SELECT table_name FROM information_schema.tables \ WHERE table_schema = 'public';]]></description>
			<content:encoded><![CDATA[<p>So kann man sich die Tabellen einer Datenbank unter PostgreSQL anzeigen lassen:</p>
<pre>
SELECT table_name FROM information_schema.tables \
WHERE table_schema = 'public';
</pre>
]]></content:encoded>
			<wfw:commentRss>http://hihn.org/2008/12/tabellen-unter-postgresql-anzeigen-lassen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tabellen unter PostgreSQL ausgeben lassen</title>
		<link>http://hihn.org/2008/10/tabellen-unter-postgresql-ausgeben-lassen/</link>
		<comments>http://hihn.org/2008/10/tabellen-unter-postgresql-ausgeben-lassen/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 07:52:42 +0000</pubDate>
		<dc:creator>rh</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[postgres]]></category>

		<guid isPermaLink="false">http://hihn.org/?p=211</guid>
		<description><![CDATA[So kann man sich unter PostgreSQL die Tabellen einer Datenbank anzeigen lassen: select table_name from information_schema.tables where \ table_schema='public' and table_type='BASE TABLE']]></description>
			<content:encoded><![CDATA[<p>So kann man sich unter PostgreSQL die Tabellen einer Datenbank anzeigen lassen:</p>
<pre>
select table_name from information_schema.tables where \
 table_schema='public' and table_type='BASE TABLE'
</pre>
]]></content:encoded>
			<wfw:commentRss>http://hihn.org/2008/10/tabellen-unter-postgresql-ausgeben-lassen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
