如何从CakePHP中的表中选择一些字段

时间:2017-03-29 16:52:45

标签: sql cakephp

我试图在cakephp中使用连接进行查询,但我想获得更多文件,

这里查询sql:

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.example.com/type"
    targetNamespace="http://www.example.com/type" elementFormDefault="unqualified" >

    <xs:element name="serviceResponse" type="MyServiceResponse"/>

    <xs:complexType name="MyServiceResponse">
        <xs:all>
            <xs:element name="Body" type="Body" minOccurs="0" />
        </xs:all>
    </xs:complexType>
    <xs:complexType name="Body">
        <xs:all>
            <xs:element name="Car" type="Car" minOccurs="0"/>
        </xs:all>
    </xs:complexType>
    <xs:complexType name="Car">
        <xs:all>
            <xs:element name="Brand" type="xs:string" minOccurs="0"/>
            <xs:element name="Color" type="xs:string" minOccurs="0"/>
        </xs:all>
    </xs:complexType>    
</xs:schema>

请帮我在cakephp中进行查询:

  

ClassRegistry ::的init(&#39;降神&#39;) - &GT;发现(&#39;所有&#39; ...

1 个答案:

答案 0 :(得分:1)