<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: sql programming?</title>
	<atom:link href="http://ebookprogram.fantasticmoney4u.com/2009/10/22/sql-programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://ebookprogram.fantasticmoney4u.com/2009/10/22/sql-programming/</link>
	<description>Great book creator for your business</description>
	<lastBuildDate>Sun, 06 Feb 2011 17:36:32 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: TheMadProfessor</title>
		<link>http://ebookprogram.fantasticmoney4u.com/2009/10/22/sql-programming/comment-page-1/#comment-423</link>
		<dc:creator>TheMadProfessor</dc:creator>
		<pubDate>Fri, 30 Oct 2009 02:47:43 +0000</pubDate>
		<guid isPermaLink="false">http://ebookprogram.fantasticmoney4u.com/2009/10/22/sql-programming/#comment-423</guid>
		<description>A lot of confusion arises because of how these apps name their transaction programming languages. 

SQL (structured query language) is an industry standard used by all the major relational DBMS (Access, Oracle, DB2, MySQL, SQL Server, etc.) A given set of SQL code defines some action to either modify a database object (CREATE TABLE, DROP VIEW, etc.) or retrieve/modify data within the database (SELECT,INSERT,etc.) With the exception of the occasional app-specific extension, the syntax of SQL doesn&#039;t vary from app to app...a SELECT is a SELECT regardless of whether it&#039;s in Access or Oracle.

The various transaction languages are app-specific (PL/SQL for Oracle, T-SQL for SQL Server, etc.). What they do is allow creation of procedural scripts which can include SQL code surrounded by logic controlling the circumstances under which the SQL code is executed, as well as methods for communicating with the user. The SQL code may be relatively static with only specific parameters being inserted (typically comparison values in a WHERE clause) or dynamic where the entire SQL string is pieced together based upon the execution of the script. These procedural langages are often similar, but the exact syntax will vary from app to app.</description>
		<content:encoded><![CDATA[<p>A lot of confusion arises because of how these apps name their transaction programming languages. </p>
<p>SQL (structured query language) is an industry standard used by all the major relational DBMS (Access, Oracle, DB2, MySQL, SQL Server, etc.) A given set of SQL code defines some action to either modify a database object (CREATE TABLE, DROP VIEW, etc.) or retrieve/modify data within the database (SELECT,INSERT,etc.) With the exception of the occasional app-specific extension, the syntax of SQL doesn&#8217;t vary from app to app&#8230;a SELECT is a SELECT regardless of whether it&#8217;s in Access or Oracle.</p>
<p>The various transaction languages are app-specific (PL/SQL for Oracle, T-SQL for SQL Server, etc.). What they do is allow creation of procedural scripts which can include SQL code surrounded by logic controlling the circumstances under which the SQL code is executed, as well as methods for communicating with the user. The SQL code may be relatively static with only specific parameters being inserted (typically comparison values in a WHERE clause) or dynamic where the entire SQL string is pieced together based upon the execution of the script. These procedural langages are often similar, but the exact syntax will vary from app to app.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: abhishek</title>
		<link>http://ebookprogram.fantasticmoney4u.com/2009/10/22/sql-programming/comment-page-1/#comment-422</link>
		<dc:creator>abhishek</dc:creator>
		<pubDate>Tue, 27 Oct 2009 09:42:20 +0000</pubDate>
		<guid isPermaLink="false">http://ebookprogram.fantasticmoney4u.com/2009/10/22/sql-programming/#comment-422</guid>
		<description>Well sql is used in every DBMS for storing,retrieving or manipulating data.

Most DBMS have almost similiar SQL syntax with very minor differences mainly in defining keys or triggers. I recently used MySQL for one of my projects and I used a book of Oracle!!!

But then Oracle is much more than SQL. The command window SQLPLUS* for SQL itself has several functions. Besides PLSQL is an Oracle extension to SQL.

Book by Evan Bayross is a good one. You can always find an ebook for it.</description>
		<content:encoded><![CDATA[<p>Well sql is used in every DBMS for storing,retrieving or manipulating data.</p>
<p>Most DBMS have almost similiar SQL syntax with very minor differences mainly in defining keys or triggers. I recently used MySQL for one of my projects and I used a book of Oracle!!!</p>
<p>But then Oracle is much more than SQL. The command window SQLPLUS* for SQL itself has several functions. Besides PLSQL is an Oracle extension to SQL.</p>
<p>Book by Evan Bayross is a good one. You can always find an ebook for it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maku</title>
		<link>http://ebookprogram.fantasticmoney4u.com/2009/10/22/sql-programming/comment-page-1/#comment-421</link>
		<dc:creator>Maku</dc:creator>
		<pubDate>Mon, 26 Oct 2009 12:33:22 +0000</pubDate>
		<guid isPermaLink="false">http://ebookprogram.fantasticmoney4u.com/2009/10/22/sql-programming/#comment-421</guid>
		<description>SQL (pronounced ess-que-ell, not see’qwl) is an industry-standard language specifically designed to enable people to create databases, add new data to databases, maintain the data, and retrieve selected parts of the data. Various kinds of databases exist, each adhering to a different conceptual
model. SQL was originally developed to operate on data in databases that follow the relational model. Recently, the international SQL standard has incorporated part of the object model, resulting in hybrid structures called object-relational databases. 

Here is a link for a tutorial if you want to learn more.

Hope this helps...</description>
		<content:encoded><![CDATA[<p>SQL (pronounced ess-que-ell, not see’qwl) is an industry-standard language specifically designed to enable people to create databases, add new data to databases, maintain the data, and retrieve selected parts of the data. Various kinds of databases exist, each adhering to a different conceptual<br />
model. SQL was originally developed to operate on data in databases that follow the relational model. Recently, the international SQL standard has incorporated part of the object model, resulting in hybrid structures called object-relational databases. </p>
<p>Here is a link for a tutorial if you want to learn more.</p>
<p>Hope this helps&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: junkette</title>
		<link>http://ebookprogram.fantasticmoney4u.com/2009/10/22/sql-programming/comment-page-1/#comment-420</link>
		<dc:creator>junkette</dc:creator>
		<pubDate>Sat, 24 Oct 2009 20:50:55 +0000</pubDate>
		<guid isPermaLink="false">http://ebookprogram.fantasticmoney4u.com/2009/10/22/sql-programming/#comment-420</guid>
		<description>sql is the language used in databases.

every database application has their own little SQL type

SQL Server (the one you think you know) uses Trans-ACT whilst Oracle uses some other one (My-SQL), however, the principles are generally the same. Maybe some syntax differences.</description>
		<content:encoded><![CDATA[<p>sql is the language used in databases.</p>
<p>every database application has their own little SQL type</p>
<p>SQL Server (the one you think you know) uses Trans-ACT whilst Oracle uses some other one (My-SQL), however, the principles are generally the same. Maybe some syntax differences.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

