<?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>Xyiry PHP Blog &#124; Where Open Source Lives &#187; Oracle</title>
	<atom:link href="http://php.xyiry.com/category/oracle/feed/" rel="self" type="application/rss+xml" />
	<link>http://php.xyiry.com</link>
	<description>My open source playground</description>
	<lastBuildDate>Wed, 18 Nov 2009 12:06:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Oracle &#8220;Alter Table&#8221; add Column</title>
		<link>http://php.xyiry.com/oracle-alter-table-add-column/</link>
		<comments>http://php.xyiry.com/oracle-alter-table-add-column/#comments</comments>
		<pubDate>Mon, 20 Aug 2007 09:05:26 +0000</pubDate>
		<dc:creator>Xyiry</dc:creator>
				<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://php.xyiry.com/oracle-alter-table-add-column/</guid>
		<description><![CDATA[============================================
By Mohd Izzairi Yamin
============================================
First of all if you have a table and you want to add more fields you should use alter table.
alter table
table_name
add
(
column1_name column1_datatype column1_constraint,
column2_name column2_datatype column2_constraint,
column3_name column3_datatype column3_constraint
);
Example 1 using alter table if you want to add 1 field
alter table
xyiry_login
add
login_day  varchar2(12) NOT NULL;
Example 2 using alter table if you want to add more [...]]]></description>
			<content:encoded><![CDATA[<p>============================================<br />
By Mohd Izzairi Yamin<br />
============================================<br />
First of all if you have a table and you want to add more fields you should use alter table.</p>
<p>alter table<br />
table_name<br />
add<br />
(<br />
column1_name column1_datatype column1_constraint,<br />
column2_name column2_datatype column2_constraint,<br />
column3_name column3_datatype column3_constraint<br />
);</p>
<p>Example 1 using alter table if you want to add 1 field</p>
<p>alter table<br />
xyiry_login<br />
add<br />
login_day  varchar2(12) NOT NULL;</p>
<p>Example 2 using alter table if you want to add more than 1 field</p>
<p>ALTER TABLE<br />
xyiry_login<br />
ADD<br />
(<br />
login_day  varchar2(12) NOT NULL,<br />
count_login   number<br />
);</p>
]]></content:encoded>
			<wfw:commentRss>http://php.xyiry.com/oracle-alter-table-add-column/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
