vrana Tue Feb 24 03:01:55 2004 EDT
Modified files:
/phpdoc/en/reference/mysql/functions mysql-fetch-array.xml
Log:
Bug #27369
http://cvs.php.net/diff.php/phpdoc/en/reference/mysql/functions/mysql-fetch-array.xml?r1=1.13&r2=1.14&ty=u
Index: phpdoc/en/reference/mysql/functions/mysql-fetch-array.xml
diff -u phpdoc/en/reference/mysql/functions/mysql-fetch-array.xml:1.13
phpdoc/en/reference/mysql/functions/mysql-fetch-array.xml:1.14
--- phpdoc/en/reference/mysql/functions/mysql-fetch-array.xml:1.13 Mon Jan 5
08:03:26 2004
+++ phpdoc/en/reference/mysql/functions/mysql-fetch-array.xml Tue Feb 24 03:01:53
2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.13 $ -->
+<!-- $Revision: 1.14 $ -->
<!-- splitted from ./en/functions/mysql.xml, last change in rev 1.27 -->
<refentry id="function.mysql-fetch-array">
<refnamediv>
@@ -34,10 +34,10 @@
access the contents with the original column name (by using
<literal>'field'</literal> in this example).
<example>
- <title>Query with duplicate field names</title>
+ <title>Query with aliased duplicate field names</title>
<programlisting role="sql">
<![CDATA[
-select table1.field as foo, table2.field as bar from table1, table2
+SELECT table1.field AS foo, table2.field AS bar FROM table1, table2
]]>
</programlisting>
</example>