English 中文(简体)
ISQL 1-many数据储存
原标题:mySQL one-to-many data storage

我只是在最近才了解到“一对一”的概念,因此,如果这一概念模糊不清或偏离了背景本身,我就不必这样做。

目前,我正试图说明以社会等级方式建立我的表格的最佳方式。 我试图最终实现的是谷歌加墙。 可以说,在我后面的人,或者我选择看到一个职位的人,可以看到我的职位。 我知道,我想要两个或三个表格来分类。 这只是如何储存它,因此,我可以问,反对它的是,在我忙于围绕逻辑总结我的头脑的地方。

目前,我正在设想一个表格,其中我储存一名会员的补贴和职位(还有其他数据,如时间档等)。 我在两个朋友之间有朋友协会的另一张桌子,还有另一个桌子,储存其他东西,因此我可以把它当作一种相互参照的表。 但我不知道我是否通过正确的方式来思考这一问题。 正如我所说的,我对这个想法说了新话;我可以完全了解这一想法。 因此,没有人就如何制定这些表格提出建议? 并没有真正地想到如何看待这些问题。 我只想说明如何适当使用一对一的概念,而且我对这个问题所做的所有读都给我以一些例子,甚至与我想要做的事情相对接近。

最佳回答

你们需要一个成员席位。

成员(成员、成员、姓名、共同日期等)

其中一个职位是具有外国关键成员的职位

员额(政治、会员国、邮政等)

其中一人

之后(后续、后续)

问题回答

暂无回答




相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签