Doctrine Full外连接

时间:2012-04-08 12:01:57

标签: zend-framework doctrine doctrine-query

我想在Doctrine ORM(PHP)中进行完全外连接

我目前的查询是:

$query = Doctrine_Query::create()
            ->from('Model_Contract_Payment p')
            ->innerJoin('p.Contract c')
            ->where(" c.modified_date IS NOT NULL AND (c.modified_date < '" . date(DATABASE_DATE_FORMAT, $lastShowableDate) . "' OR c.archive_status = 1 OR p.archive_status = 1)".$queryStr )
            ->orderBy($sortColumn . ' ' . $sortDirection);

如果我这样做,我只得到contract_id的合同而忽略了 pay_id为NULL的数据。

我更愿意使用payment_id NULL获取所有数据

所以,我想替换 与FULL OUTER JOIN的内连接。 关于如何解决这个问题的任何想法?

我的schema.yml文件:

Contract:
  connection: doctrine
  tableName: Contract
  columns:
    contract_id:
      type: integer(4)
      fixed: false
      unsigned: false
      primary: true
      autoincrement: true
    hash:
      type: string(32)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    payment_id:
      type: integer(4)
      fixed: false
      unsigned: false
      primary: true
      autoincrement: true
    sales_force_opportunity_id:
      type: string(50)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    sales_force_opp_owner:
      type: string(50)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    sales_force_opp_name:
      type: string(50)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    sales_force_account_name:
      type: string(50)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    contact_first_name:
      type: string(50)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    contact_last_name:
      type: string(50)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    contract_companyname:
      type: string(80)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    contact_email_address:
      type: string(256)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    contact_alternate_email_address:
      type: string(256)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    contact_phone_number:
      type: string(50)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    contract_status_id:
      type: integer(4)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    contract_agreed_ip_address:
      type: string(72)
      fixed: true
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    agreed_date:
      type: timestamp(16)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    agreement_start_date:
      type: timestamp(16)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    agreement_end_date:
      type: timestamp(16)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    seat_details:
      type: string(2147483647)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    special_instructions:
      type: string(2147483647)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    agreement_type_id:
      type: integer(4)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    agreement_terms:
      type: string(2147483647)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    additional_terms:
      type: string(2147483647)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    additional_notes:
      type: string(2147483647)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    payment_terms:
      type: string(2147483647)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    total_value:
      type: decimal(20)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    payment_method_id:
      type: integer(4)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    bank_name:
      type: string(100)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    bank_account:
      type: string(30)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    bank_routing:
      type: string(30)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    credit_card_name:
      type: string(50)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    credit_card_num_short:
      type: string(5)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    credit_card_num_encrypt:
      type: string(255)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    credit_card_exp:
      type: timestamp(16)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    credit_card_type:
      type: string(30)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    billing_first_name:
      type: string(50)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    billing_last_name:
      type: string(50)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    billing_address1:
      type: string(100)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    billing_address2:
      type: string(100)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    billing_city:
      type: string(50)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    billing_state:
      type: string(5)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    billing_country:
      type: string(50)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    billing_postal_code:
      type: string(20)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    billing_phone:
      type: string(20)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    shipping_first_name:
      type: string(50)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    shipping_last_name:
      type: string(50)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    shipping_address1:
      type: string(100)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    shipping_address2:
      type: string(100)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    shipping_city:
      type: string(50)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    shipping_state:
      type: string(5)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    shipping_country:
      type: string(50)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    shipping_postal_code:
      type: string(20)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    shipping_phone:
      type: string(20)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    rejection_notes:
      type: string(2147483647)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    rvp_status_id:
      type: integer(4)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    rvp_comment:
      type: string(2147483647)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    rvp_id:
      type: integer(4)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    created_date:
      type: timestamp(16)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    created_admin_id:
      type: integer(4)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    modified_date:
      type: timestamp(16)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    isenabled:
      type: boolean(1)
      fixed: false
      unsigned: false
      notnull: true
      default: 1
      primary: false
      autoincrement: false
    archive_status:
      type: integer(1)
      fixed: false
      unsigned: false
      notnull: true
      default: 0
      primary: false
      autoincrement: false
  relations:
    Contract_Status:
      local: contract_status_id
      foreign: contract_status_id
      type: one
    Agreement_Type:
      local: agreement_type_id
      foreign: agreement_type_id
      type: one
    Payment_Method:
      local: payment_method_id
      foreign: payment_method_id
      type: one
    AdminUser:
      local: created_admin_id
      foreign: admin_id
      type: one
    Contract_Payment:
      local: contract_id
      foreign: contract_id
      type: many
      cascade: [delete]
    Contract_Product:
      local: contract_id
      foreign: contract_id
      type: many
      cascade: [delete]
    Contract_Venue:
      local: contract_id
      foreign: contract_id
      type: many
      cascade: [delete]
Contract_Payment:
  connection: doctrine
  tableName: Contract_Payment
  columns:
    payment_id:
      type: integer(4)
      fixed: false
      unsigned: false
      primary: true
      autoincrement: true
    created_date:
      type: timestamp(16)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    contract_id:
      type: integer(4)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    payment_status_id:
      type: integer(4)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    amount:
      type: decimal(20)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    credit_card_amount:
      type: decimal(20)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    credit_card_amount1:
      type: decimal(20)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    check_amount:
      type: decimal(20)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    due_date:
      type: timestamp(16)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    modified_date:
      type: timestamp(16)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    modified_admin_id:
      type: integer(4)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    notes:
      type: string(200)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    payment_method_id:
      type: integer(1)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    payment_status_id_credit_card1:
      type: integer(4)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    payment_status_id_credit_card2:
      type: integer(4)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    credit_card_holdername:
      type: string(50)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    credit_card_num_short:
      type: string(5)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    credit_card_num_encrypt:
      type: string(255)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    credit_card_expiration:
      type: timestamp(16)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    credit_card_type:
      type: string(30)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    second_credit_card_enable:
      type: integer(1)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    credit_card_holdername1:
      type: string(50)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    credit_card_num_short1:
      type: string(5)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    credit_card_num_encrypt1:
      type: string(255)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    credit_card_expiration1:
      type: timestamp(16)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    credit_card_type1:
      type: string(30)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    auth_reference:
      type: string(100)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    auth_reference1:
      type: string(100)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    billing_postal_code:
      type: string(20)
      fixed: false
      unsigned: false
      notnull: false
      primary: false
      autoincrement: false
    archive_status:
      type: integer(1)
      fixed: false
      unsigned: false
      notnull: true
      default: 0
      primary: false
      autoincrement: false
  relations:
    Contract:
      local: contract_id
      foreign: contract_id
      type: one
    Payment_Status:
      local: payment_status_id
      foreign: payment_status_id
      type: one
    AdminUser:
      local: modified_admin_id
      foreign: admin_id
      type: one
    Contract_Payment_History:
      local: payment_id
      foreign: payment_id
      type: many
      cascade: [delete]

我正在使用SQL SERVER。  任何想法将不胜感激!感谢

2 个答案:

答案 0 :(得分:3)

您的SQL缺少一些关键信息,如果您发布了所需的SQL会更容易。但是根据它的声音,你想使用leftJoin而不是innerJoin(LEFT JOIN与LEFT OUTER JOIN相同)。

有关详细信息,请参阅Coding Horror: A Visual Explanation of SQL Joins

答案 1 :(得分:1)

我知道在Doctrine ORM中无法进行完全外连接。 所以,我已经改变了我的应用程序代码以使用LEFT JOIN。