<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://sqle.ru/index.php?action=history&amp;feed=atom&amp;title=MySQL_Tutorial%2FIntroduction%2FIntroduction</id>
		<title>MySQL Tutorial/Introduction/Introduction - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://sqle.ru/index.php?action=history&amp;feed=atom&amp;title=MySQL_Tutorial%2FIntroduction%2FIntroduction"/>
		<link rel="alternate" type="text/html" href="http://sqle.ru/index.php?title=MySQL_Tutorial/Introduction/Introduction&amp;action=history"/>
		<updated>2026-04-04T00:29:58Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://sqle.ru/index.php?title=MySQL_Tutorial/Introduction/Introduction&amp;diff=205&amp;oldid=prev</id>
		<title> в 13:44, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://sqle.ru/index.php?title=MySQL_Tutorial/Introduction/Introduction&amp;diff=205&amp;oldid=prev"/>
				<updated>2010-05-26T13:44:56Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 13:44, 26 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
			</entry>

	<entry>
		<id>http://sqle.ru/index.php?title=MySQL_Tutorial/Introduction/Introduction&amp;diff=206&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://sqle.ru/index.php?title=MySQL_Tutorial/Introduction/Introduction&amp;diff=206&amp;oldid=prev"/>
				<updated>2010-05-26T09:49:30Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Connecting To Your Database==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;In order to log into MySQL we must pass information to the MySQL client program when we start it.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is done with the following commands and syntax.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;sql&amp;quot;&amp;gt;&lt;br /&gt;
c:\mysql\bin\mysql -u &amp;lt;mysql_username&amp;gt; -p &amp;lt;password&amp;gt; &amp;lt;database name&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
== Database, table, index, column, and alias names are identifiers.==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;The maximum length for each type of identifier.&amp;lt;/p&amp;gt;&lt;br /&gt;
Identifier&lt;br /&gt;
Maximum Length (bytes)&lt;br /&gt;
Database&lt;br /&gt;
64&lt;br /&gt;
Table&lt;br /&gt;
64&lt;br /&gt;
Column&lt;br /&gt;
64&lt;br /&gt;
Index&lt;br /&gt;
64&lt;br /&gt;
Alias&lt;br /&gt;
255&lt;br /&gt;
&lt;br /&gt;
== Keywords may be entered in any lettercase.==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;The following queries are equivalent:&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;sql&amp;quot;&amp;gt;&lt;br /&gt;
mysql&amp;gt;&lt;br /&gt;
mysql&amp;gt;&lt;br /&gt;
mysql&amp;gt; SELECT VERSION();&lt;br /&gt;
+---------------------+&lt;br /&gt;
| VERSION()           |&lt;br /&gt;
+---------------------+&lt;br /&gt;
| 5.0.41-community-nt |&lt;br /&gt;
+---------------------+&lt;br /&gt;
1 row in set (0.00 sec)&lt;br /&gt;
mysql&amp;gt; select version();&lt;br /&gt;
+---------------------+&lt;br /&gt;
| version()           |&lt;br /&gt;
+---------------------+&lt;br /&gt;
| 5.0.41-community-nt |&lt;br /&gt;
+---------------------+&lt;br /&gt;
1 row in set (0.00 sec)&lt;br /&gt;
mysql&amp;gt; SeLeCt vErSiOn();&lt;br /&gt;
+---------------------+&lt;br /&gt;
| vErSiOn()           |&lt;br /&gt;
+---------------------+&lt;br /&gt;
| 5.0.41-community-nt |&lt;br /&gt;
+---------------------+&lt;br /&gt;
1 row in set (0.00 sec)&lt;br /&gt;
mysql&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
== To test whether a connection can even be made, execute the command STATUS.==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;sql&amp;quot;&amp;gt;&lt;br /&gt;
mysql&amp;gt;&lt;br /&gt;
mysql&amp;gt;&lt;br /&gt;
mysql&amp;gt; STATUS;&lt;br /&gt;
--------------&lt;br /&gt;
mysql  Ver 14.12 Distrib 5.0.41, for Win32 (ia32)&lt;br /&gt;
Connection id:          55&lt;br /&gt;
Current database:       test&lt;br /&gt;
Current user:           root@localhost&lt;br /&gt;
SSL:                    Not in use&lt;br /&gt;
Using delimiter:        ;&lt;br /&gt;
Server version:         5.0.41-community-nt MySQL Community Edition (GPL)&lt;br /&gt;
Protocol version:       10&lt;br /&gt;
Connection:             localhost via TCP/IP&lt;br /&gt;
Server characterset:    latin1&lt;br /&gt;
Db     characterset:    latin1&lt;br /&gt;
Client characterset:    latin1&lt;br /&gt;
Conn.  characterset:    latin1&lt;br /&gt;
TCP port:               3306&lt;br /&gt;
Uptime:                 10 days 23 hours 17 min 22 sec&lt;br /&gt;
Threads: 1  Questions: 34588  Slow queries: 0  Opens: 4294  Flush tables: 1  Open tables: 18  Queries per second avg: 0.036&lt;br /&gt;
--------------&lt;br /&gt;
mysql&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
== You can use mysql as a simple calculator:==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;sql&amp;quot;&amp;gt;&lt;br /&gt;
mysql&amp;gt; SELECT SIN(PI()/4), (4+1)*5;&lt;br /&gt;
+------------------+---------+&lt;br /&gt;
| SIN(PI()/4)      | (4+1)*5 |&lt;br /&gt;
+------------------+---------+&lt;br /&gt;
| 0.70710678118655 |      25 |&lt;br /&gt;
+------------------+---------+&lt;br /&gt;
1 row in set (0.00 sec)&lt;br /&gt;
mysql&amp;gt;&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>