git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@152219 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jakub Vrana 2004-02-24 08:01:53 +00:00
parent 1d404db692
commit 6b73567236

View file

@ -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>