为Web应用程序创建数据库。保留表的主键

时间:2013-08-21 07:21:09

标签: mysql web-applications

我正在开发一个Web应用程序,但我对此很陌生。

基本理念:
用户登录并可以通过许多不同的表单输入数据。每个表单应连接到一个用户,并按年和月编目。

现在我的数据库结构是:

core_user: id_user,username, password
core_year: id_year, year
core_month: id_month, month
ch: id_ch, many variables...

我希望core_yearcore_monthch中的列注册id_user,以便我可以为用户检索和存储数据,按月和年

我尝试使用外键但没有成功。

我想要的是:

task--> user registered--> unique primary key=id_user
task--> year registered--> unique primary key=id_year with the id_user of the
                                                      session that is going on.

依旧......

有什么建议吗?

0 个答案:

没有答案