本文介绍了如何在我的sql数据库中存储一对多的关系? (MySQL)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在制作网站,我需要在我的数据库中存储随机数据。

I'm making a website and I need to store a random number of data in my database.

例如:用户john可能有一个电话号码,可以有3.

for example: User john may have one phone number where jack can have 3.

我需要能够为每个用户存储无限数量的值。

I need to be able so store an infinite number of values per user.

找不到如何做到这里,希望你能帮助我! :)

I couldn't find how to do this anywhere, Hope you can help me! :)

我是关系数据库中的新手。

I am a novice in Relational databases.

推荐答案

您为电话号码创建一个单独的表(即1:M关系)。

You create a separate table for phone numbers (i.e. a 1:M relationship).

create table `users` (
  `id` int unsigned not null auto_increment,
  `name` varchar(100) not null,
  primary key(`id`)
);

create table `phone_numbers` (
  `id` int unsigned not null auto_increment,
  `user_id` int unsigned not null,
  `phone_number` varchar(25) not null,
  index pn_user_index(`user_id`),
  foreign key (`user_id`) references users(`id`) on delete cascade,
  primary key(`id`)
);

现在,您可以轻松地通过简单的连接获取用户的电话号码; p>

Now you can, in an easily manner, get a users phone numbers with a simple join;

select
  pn.`phone_number`
from
  `users` as u,
  `phone_numbers` as pn
where
  u.`name`='John'
  and
  pn.`user_id`=u.`id`

这篇关于如何在我的sql数据库中存储一对多的关系? (MySQL)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 15:38