sql >> Databáze >  >> RDS >> Mysql

Symfony2 Mnoho až mnoho relační Db struktura

ok, píšu jinak:

use může použít toto mapování:

Film:

Movie:
    type: entity
    table: movie
    id:
        id:
            type: integer
            generator: { strategy: AUTO }
    fields:
        title: ~
        createdAt:
            type: datetime
    oneToMany:
        roles:
            targetEntity: Role
            mappedBy: movie

Umělec:

Artist:
    type: entity
    table: artist
    id:
        id:
            type: integer
            generator: { strategy: AUTO }
    fields:
        fname: ~
        lname: ~
        birthDate:
            type: datetime
        #other fields for this entity

Role:

Role:
    type: entity
    table: role
    id:
        id:
            type: integer
            generator: { strategy: AUTO }
    fields:
        name: ~

    manyToMany:
        artist:
            targetEntity: Artist

    manyToOne:
        movie:
            targetEntity: Movie
            inversedBy: roles



  1. Směrování pomocí AngularJS a Slim PHP

  2. Příkaz MySQL INSERT do dvou tabulek s použitím hodnoty AI z jedné do druhé

  3. Jak nainstalovat postgres s NSIS se všemi parametry?

  4. Vkládání záznamů s automaticky se zvyšujícími primárními klíči