<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1013567" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1013567</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/mysql-newbie#comment-1078804</link>
    <description> &lt;p&gt;For the most part, MYSQL runs in Linux or Unix. They have ported it to Windows also. The structure is still very much using the command line. If you know SQL, you are 80-90% there. MYSQL intergrates very nicely with PHP and PERL. You can also use phpwizard ( &lt;a href=&quot;http://www.phpwizard.net&quot; class=&quot;bb-url&quot;&gt;http://www.phpwizard.net&lt;/a&gt; ) to access and create your databases. Some hosts like the one I use have MYSQL and the phpwizard built in.&lt;/p&gt;
 </description>
     <pubDate>Fri, 02 Mar 2001 02:09:27 +0000</pubDate>
 <dc:creator>mairving</dc:creator>
 <guid isPermaLink="false">comment 1078804 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/mysql-newbie#comment-1078771</link>
    <description> &lt;p&gt;What you&#039;re referring to is the language (&lt;strong&gt;S&lt;/strong&gt;tructured &lt;strong&gt;Q&lt;/strong&gt;uery &lt;strong&gt;L&lt;/strong&gt;anguage). MySQL (or I&#039;m assuming MSSQL in your case) is the database server application which actually stores information and creates the database. The SQL language is used to instruct the database server (MySQL, MSSQL, etc) to perform whatever action you need it to.&lt;/p&gt;
 </description>
     <pubDate>Thu, 01 Mar 2001 01:39:27 +0000</pubDate>
 <dc:creator>Gil</dc:creator>
 <guid isPermaLink="false">comment 1078771 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/mysql-newbie#comment-1078767</link>
    <description> &lt;p&gt;Kind of confused here...&lt;/p&gt;
&lt;p&gt;I use asp.  In that I use what I think is pure SQL.  It seems exactly the same as MySQL.  Is MySQL needed to get SQL running on Linux or something?  &lt;/p&gt;
&lt;p&gt;Guess what I am asking is, what is MySQL and why is it different from just SQL.&lt;/p&gt;
&lt;p&gt;(Tought my self everything I know, so there are some major gaps in my knowledge)&lt;/p&gt;
 </description>
     <pubDate>Thu, 01 Mar 2001 01:05:08 +0000</pubDate>
 <dc:creator>ShinNathan</dc:creator>
 <guid isPermaLink="false">comment 1078767 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/mysql-newbie#comment-1078623</link>
    <description> &lt;p&gt;The documentation on MYSQL&#039;s site is terrible. I have an O&#039;Reilly book called MSQL &amp;amp; MYSQL in a Nutshell. It is a pretty good intro into MYSQL. Even if you use phpMyAdmin, you still need to know your way around MYSQL. Learn security first and foremost. I learned MS Access first and then branched into MYSQL. You will also need to know your way around Apache &amp;amp; Linux. You can also get a tutorial at &lt;a href=&quot;http://www.devshed.com/Server_Side/MySQL/Intro/&quot; class=&quot;bb-url&quot;&gt;http://www.devshed.com/Server_Side/MySQL/Intro/&lt;/a&gt; .&lt;/p&gt;
 </description>
     <pubDate>Sun, 25 Feb 2001 18:22:20 +0000</pubDate>
 <dc:creator>mairving</dc:creator>
 <guid isPermaLink="false">comment 1078623 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/mysql-newbie#comment-1078616</link>
    <description> &lt;p&gt;Here&#039;s the thing. MySQL (and its counterparts: SQL Server, PostgreSQL and Oracle) are methods of organizing data and quickly retrieving that data. They are stored in a much more complex fashion than a flat (text) file database, and while that flat file database might be less resource intensive and smaller, it takes much more programming to select the name column of each line in your flat file database.&lt;/p&gt;
&lt;p&gt;Let me give you an example. Let&#039;s say you have a flat file database like this:&lt;br /&gt;
Name|Address|City|State|DOB&lt;/p&gt;
&lt;p&gt;Now, let&#039;s say you wanted to grab the name of every person on that database. In Perl (which I&#039;ll use just for demonstration), you&#039;d have to do something like this:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;open(FILE,&amp;quot;peopledb.txt&amp;quot;);&lt;br /&gt;@people=&amp;lt;FILE&amp;gt;;&lt;br /&gt;close(FILE);&lt;br /&gt;&lt;br /&gt;foreach $line(@people) {&lt;br /&gt;&amp;nbsp; @columns = split(/|/, $line);&lt;br /&gt;&amp;nbsp; push(@names, $columns[0]);&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;The result is an array with names in it. Now who wants to do that? Here is where database servers rock. If you had a database table named People with the same info and structure, all you would have to do is this:&lt;br /&gt;
&lt;code&gt;Select Name FROM People&lt;/code&gt;&#039;&lt;/p&gt;
&lt;p&gt;So you can see how powerful it is. When I first got into databases, I was confused on how to get started using MySQL. Unfortunately I haven&#039;t ever seen a quick start guide to using MySQL on the web, so you might need to buy a book. But you might also try using phpMyAdmin available from phpwizard.net. It&#039;s basically a series of scripts that allow you to setup your database. &lt;/p&gt;
&lt;p&gt;Good luck fifeclub!&lt;/p&gt;
 </description>
     <pubDate>Sun, 25 Feb 2001 16:10:14 +0000</pubDate>
 <dc:creator>Gil</dc:creator>
 <guid isPermaLink="false">comment 1078616 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/mysql-newbie#comment-1078604</link>
    <description> &lt;p&gt;Yes, mySQL *IS* that much better than flat files.&lt;/p&gt;
&lt;p&gt;You can have more than one script using the same Database, just make sure that they don&#039;t try to use tables with the same name.&lt;/p&gt;
 </description>
     <pubDate>Sun, 25 Feb 2001 06:56:46 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1078604 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
