gpt4 book ai didi

具有多个外键的 SQL 关系

转载 作者:行者123 更新时间:2023-11-29 14:30:28 25 4
gpt4 key购买 nike

我正在为我的定制吉他公司建立网站,我刚刚意识到数据库需要工作的方式有一些我似乎无法理解的东西——或者我想得太多了,把自己弄糊涂了。

我需要将两个表相互关联:Artists 表和Projects 表。 artists 表存储有关个人艺术家的信息,Projects 表存储有关乐队/项目的信息。

创建 Artists 表并将其主键用作 Projects 表中的外键非常容易;如果一位艺术家参与了多个项目,那么这种安排也没有问题。不过,我想到的是,一个项目也完全有可能与不止一位艺术家相关联。

我知道在 Projects 表中将 artist_id 字段作为外键是不符合正常形式的,如果它有多个值(非原子);但我不确定我还能如何实现这一目标。

它也可能有助于了解用例:

我正在构建一个 Django-REST 后端,它将被 Angular 前端使用。有一个包含艺术家个人资料的页面,Angular 使用 *ngFor 从 JSON 中解析出来。因此,使用 *ngFor 添加到 DOM 的每个 html block 都会显示艺术家姓名、简历和图片;艺术家关联的项目通过内部 ngFor 循环添加到 DOM

以下是 Angular 端的数据结构:

import {ArtistSocialMediaModel} from './artist-social-media.model';

export class ArtistProfilesModel {
public artist_name: string;
public artist_image: string;
// the second string is a range of active dates for a given project
// which I will convert to a string in Django before serializing
public projects: Array<[string, string]>;
public description: string;
public band_website: string;
public social_media: ArtistSocialMediaModel[];

constructor(name: string, image: string, projects,
description: string, website: string, social) {


this.artist_name = name;
this.artist_image = image;
this.projects = projects;
this.description = description;
this.band_website = website;
this.social_media = social;
}

}

这是您在上面看到的社交媒体模型,但这将是与 Artists_Social 表的直接一对一关系:

export class ArtistSocialMediaModel {
public facebook: string;
public twitter: string;
public instagram: string;

constructor(facebook: string, twitter: string, instagram: string) {
this.facebook = facebook;
this.twitter = twitter;
this.instagram = instagram;
}

}

这是显示数据的模板:

    <div *ngFor="let profile of artistProfiles; let i = index"
class="profiles-div">

<div *ngIf="resolveIndex(i) === 'left'; then left else right">ignored</div>

<ng-template #left>
<div class="row">

<div class="col-6 col-md-5">

<img [src]="profile.artist_image"
[alt]="profile.artist_name"
class="img-thumbnail img-fluid"
[ngStyle]="{ 'float': resolveIndex(i)}">

<h1 class="artists-jumbo-header"
[ngStyle]="{ 'text-align': resolveIndex(i)}">
Projects:
</h1>
<p *ngFor="let project of profile.projects"
[ngStyle]="{ 'text-align': resolveIndex(i)}"
class="artists-p">
{{project[0] + ": " + project[1]}}
</p>

<h1 class="artists-jumbo-header"
[ngStyle]="{ 'text-align': resolveIndex(i)}">
Website:
</h1>
<a href="https:{{profile.band_website}}"
target="_blank">
<p [ngStyle]="{ 'text-align': resolveIndex(i)}"
class="artists-p">
{{profile.band_website}}
</p>
</a>

<h1 class="artists-jumbo-header"
[ngStyle]="{ 'text-align': resolveIndex(i)}">
Social Media:
</h1>
<a href="https://{{profile.social_media['facebook']}}"
target="_blank">
<p [ngStyle]="{ 'text-align': resolveIndex(i)}"
class="artists-p">{{profile.social_media['facebook']}}</p>
</a>

<a href="https://{{profile.social_media['twitter']}}"
target="_blank">
<p [ngStyle]="{ 'text-align': resolveIndex(i)}"
class="artists-p">{{profile.social_media['twitter']}}</p>
</a>

<a href="https://{{profile.social_media['instagram']}}"
target="_blank">
<p [ngStyle]="{ 'text-align': resolveIndex(i)}"
class="artists-p">
{{profile.social_media['instagram']}}</p>
</a>
</div>

<div class="col-6 col-md-7">
<h1 class="artists-jumbo-header">{{ profile.artist_name }}
</h1>
<br>
<p class="artists-p">{{ profile.description }}</p>
</div>
</div>
</ng-template>

<ng-template #right>
<div class="row ng-template-right">
<div class="col-6 col-md-7">
<h1 class="artists-jumbo-header">{{ profile.artist_name }}
</h1>
<br>
<p class="artists-p">{{ profile.description }}</p>
</div>
<div class="col-6 col-md-5">
<img [src]="profile.artist_image"
[alt]="profile.artist_name"
class="img-thumbnail"
[ngStyle]="{ 'float': resolveIndex(i)}">

<div class="container">
<h1 class="artists-jumbo-header"
[ngStyle]="{ 'text-align': resolveIndex(i)}">
Projects:
</h1>
<p *ngFor="let project of profile.projects"
[ngStyle]="{ 'text-align': resolveIndex(i)}"
class="artists-p">
{{project[0] + ": " + project[1]}}
</p>

<h1 class="artists-jumbo-header"
[ngStyle]="{ 'text-align': resolveIndex(i)}">
Website:
</h1>
<a href="https:{{profile.band_website}}"
target="_blank">
<p [ngStyle]="{ 'text-align': resolveIndex(i)}"
class="artists-p">
{{profile.band_website}}
</p>
</a>

<h1 class="artists-jumbo-header"
[ngStyle]="{ 'text-align': resolveIndex(i)}">
Social Media:
</h1>
<a href="https://{{profile.social_media['facebook']}}"
target="_blank">
<p [ngStyle]="{ 'text-align': resolveIndex(i)}"
class="artists-p">{{profile.social_media['facebook']}}</p>
</a>

<a href="https://{{profile.social_media['twitter']}}"
target="_blank">
<p [ngStyle]="{ 'text-align': resolveIndex(i)}"
class="artists-p">{{profile.social_media['twitter']}}</p>
</a>

<a href="https://{{profile.social_media['instagram']}}"
target="_blank">
<p [ngStyle]="{ 'text-align': resolveIndex(i)}"
class="artists-p">
{{profile.social_media['instagram']}}</p>
</a>
</div>

</div>
</div>
</ng-template>

<hr>

</div>

最佳答案

我对Django一无所知,但你问的是多对多关系。在大多数数据库系统中,多对多是通过第三个表实现的,该表具有指向您正在链接的表的外键。某些数据库系统允许您将数组存储为行的成员,这可用于此目的。然而,这是很少见的事情(通常只存在于层次数据库中)。第三表方法应用最广泛。

在您的情况下,您的表格看起来像这样。请注意,Artist_Projects 表的主键是一个组合键 -- 它是 artist_idproject_id组合那是主键。但是每个字段都是单独表的外键。

+----------------+      +----------------------+      
| Artists | | Artist_Projects | +-----------------+
+----------------+ +----------------------+ | Projects |
| artist_id (PK) | <--- | artist_id (PK) (FK) | +-----------------+
+----------------+ | project_id (PK) (FK) | ---> | project_id (PK) |
+----------------------+ +-----------------+

关于具有多个外键的 SQL 关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52617047/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com