0
votes
2answers
31 views

SQL one-to-many

I am trying to build an SQL schema for a system where we have channels, each with an id, and one or more fixtures. I am having difficulty finding a way to implement this one-to-many mapping. (i.e. One ...
0
votes
1answer
14 views

Updating existing lines in MySql and treating Duplicated Keys

I have a MySql database containing data about users of an application. This application is in production already, however improvements are added every day. The last improvement I've made changed the ...
0
votes
1answer
14 views

Adding a database record with foreign key

Let's say there is a database with two tables: one customer table and one country table. Each customer row contains (among other things) a countryId foreign key. Let's also assume that we are ...
0
votes
0answers
13 views

Cant create a foreign key relationship between two tables

I have two tables tbl_del_info(order_no,ship_addr,bill_addr) and tbl_order(order_no,user_date,order_status) in both the tables order_no is the primary key. I am using SQL server 2005. I am unable to ...
2
votes
1answer
28 views

Can I assign a foreign key from two tables?

I am creating a database which is similar to the following situation. Table1: CustomerType1 (Column: CustomerId,...) Table2: CustomerType2 (Column: CustomerId,...) Table 3: Orders (Columns: ...
0
votes
1answer
9 views

MYSQL doesn't check for foriegn key exsistence

I am facing a strange problem here. TABLE 1: create table degree (degree_id varchar(6) primary key , degree_name varchar(32) unique key , degree_abbr varchar(3)); TABLE 2: create table course ...
0
votes
2answers
44 views

ID Refer to Table Rather than Column within Table

Multiple Voting Table Schema: Single Voting Table Schema: Businesses, Products, and Comments can all be voted on. For the first obvious solution, I chose to create an association entity for each of ...
-4
votes
1answer
36 views

How to store metadata using foreign key? [closed]

I am using PostgreSQL. I have two types of databases, A & B containing different types of data. However, my task is to store metadata of data contained in these two databases, A & B. So in ...
0
votes
2answers
34 views

Connection between tables in mySQL database

I have a users table in my database , where i have an deviceID , a pushToken an OS . I have another table subscriptions. This table has the deviceID and the pushToken of subscribed users. When i ...
0
votes
2answers
33 views

i used the program SQL Fiddle and it keeps telling me that the table doesn't exist,what can i do to fix the two tables referencing each other?

the Staff table references the branch table CREATE TABLE Staff( StaffNo VARCHAR(5) NOT NULL, firstName VARCHAR(15) NOT NULL UNIQUE, lastName VARCHAR(15) NOT NULL, position VARCHAR(10) NOT NULL, ...
0
votes
2answers
50 views

Can I structure a MySQL DB table with the 2 foreign keys from the same table?

Having trouble wrapping my head around the right way to structure this... I'm building an event management application with a judging function for a contest. There will be multiple rounds, each with ...
0
votes
1answer
17 views

Dynamic foregin key like in database

Is it good idea to have database structure like this? Where in manager table id_item is like foregn key from school or company based on the type of the profile (id_item is school.id or company.id ...
2
votes
1answer
59 views

Do I need to maintain foreign keys at the database level when using Eloquent ORM?

Eloquent can effectively manage all relationships with Eloquent Models. So, do I really need to maintain foreign key relationships in the database? Does maintaining relationships at the database level ...
0
votes
2answers
44 views

Resolving many to many relationship

I have 3 tables that i am trying to figure out how to set the relationships. The database is to track survey questions and answers. A User can answer many questions, A question can have many ...
1
vote
1answer
31 views

SQLITE ON UPDATE Actions

Based on the SQLite foreign key documentation, it should be the way of creating two database, and the field that referencing the parent field will get updated too if the parent field get updated. ...
2
votes
1answer
43 views

What to do with a 1 --> 0..1 relationship?

We have a Claim entity which might be proved by either a EmailVerification , put MetaCode in the relevant website or uploading CertificateFile. Now the problem is the claimer may choose to prove their ...
2
votes
2answers
55 views

Database tables relationship in SQL Server

I have a jobs(job) table and a tool table in my database. Tool table is divided in two parts first is category(tool_category) and other is tool data(common_tools). Now what I want to ask is, I have a ...
0
votes
1answer
34 views

Database design… how to represent polymorphic like types

In response to ZZ-bb I'll try to clarify although I think ZZ has answered the question pretty much (thank you ZZ-bb)... I want to represent a clipboard contents in a database. The idea being a user ...
1
vote
2answers
46 views

MongoDB copy a field to another collection with a foreign key

I want to copy over the color from user collection to the Car collection. I'm using a foreign key which is userID. > db.test1.User.find() { "_id" : ObjectId("515f7db83f71d6bcb1c41a48"), "age" : ...
1
vote
1answer
48 views

Display the values of 2 foreign keys

I am creating a MySQL database which has a relation in the form of: What I am trying to achieve is to create a view which displays the details of both couples at once, for example the column names ...
2
votes
2answers
62 views

How do I make a Table's Attribute a Foreign Key within that Table?

I had to write the SQL to create the tables, attributes, and primary & foreign keys in this ERD: http://imgur.com/VYZbwr6 In the table 'Financial_Transactions' in the ERD there is a attribute ...
-1
votes
1answer
60 views

Airline database prototype

I am designing an airline database( the outline of one anyway) for an assignment and seem to be running around in circles. Three tables are concerned. Customer Booking_Reference Flight ...
-2
votes
3answers
47 views

Database composite PK - how to make a FK appropriately? [closed]

I'm doing a SQL project. When I declared the foreign keys, I came to a question. Can partial key (the attribute is part of primary key) be a foreign key? EDIT: Thanks for the help from you all. I ...
0
votes
0answers
26 views

Foreign key with a static value

I have 3 tables. The two tables tab1 and tab2 contains some data. The calender links the data to a date. Is it possible to create a Foreign Key containing the id and a static kat? I image a entry ...
1
vote
1answer
57 views

MySQL FOREIGN KEY assistance

I'm working on a database assignment and have run into this error. The database should look like... Legend: **Primary Key** *Foreign Key . Movies (**title, year**, length, genre, *studioName, ...
0
votes
2answers
98 views

Cardinality between entities

I'm learning for a test at school from database systems, and I'havent found similar example on the Internet and I'm not sure. What is the cardinality of following relationship ? I would say 1:1. ...
2
votes
2answers
57 views

How to create relation between single column from one table and multiple rows from second table?

I have two tables: Players and Characters. Every Player can have max. 10 Characters. I'm looking for best way to create relation between those tables. I was planning to use Foreign Key to connect ...
1
vote
1answer
93 views

Create foreign key relationship in database

This is most likely a very silly question, I am not a programmer. I have used visual studio to create a database for my application. The table "CapitalPlan" has primary key "ProgramID" - this needs ...
0
votes
0answers
64 views

relational table from perl dbi

I'm using DBI module in perl and I have a problem that I cannot wrap my mind around it. Lets say I have this table called 'article', which I fill with some data collected from different files, the ...
0
votes
1answer
52 views

JOIN mutiple tables in SQL SERVER

I have like above Logical ERD. I'm alright with it BUT I can't understand how to display the correct information. For example: Need to lists groups and the members belonging to each group. For ...
1
vote
3answers
54 views

Database: big amount of foreign keys

I have a mysql database about a gps system. It has about 70 tables. One of the tables is called vehicles which has only one column containing the vehicles' ids and it is a primary key. The rest of ...
5
votes
1answer
133 views

Mapping a primary key as foreign key in database

I have a logical problem in my database design. I have got a table with 2 field, one of the integer field is the primary key and it acts as foreign key in all other tables. The table structure is ...
0
votes
1answer
35 views

Difference between text references and int references in SQLite?

The following statement works: SELECT p._id, last_name, first_name_pref, title, photo_big FROM People p NATURAL JOIN SpecialtyAreas s WHERE specialty_area_1 = (SELECT s._id FROM SpecialtyAreas s ...
0
votes
1answer
49 views

How to establish a distinct relationship between user and his contacts in a table

Please help me solve this problem I am trying to create a relationship table in sql but the challenge I am facing is If there are 3 users, u1, u2, u3 in user_table create table user_tab (user_id ...
0
votes
0answers
53 views

Insert values into a table from multiple tables

I am trying to insert values into a table from multiple tables, the tables that i have looks like this. Meter_detail meter_id(primary key) meter_no. meter_name Parameter_details ...
1
vote
1answer
56 views

CakePHP - how should I layout and name my tables

It's a song and lyrics database. I'm trying to bake an app from my database, which looks like this: (every table does have an ID, I just left it out..) songs song_name artists artist_name ...
1
vote
2answers
51 views

Reference data from another table

I am creating a database table and want to make sure that data in one of the column is always bounded by data in a column of another table. for example: Table_1 has Column_1 Column_1 can have ...
-2
votes
1answer
104 views

how to get fields foreign key(table and field) php mysqli [closed]

How can i get foreign key field like in phpMyAdmin using php and mysqli? see photo: http://i.stack.imgur.com/Oxx3B.png
1
vote
1answer
125 views

check database design for a blog application

I am creating a blog application - where multiple users can publish, share and like blogs. I've created an outline of the database but I am not sure if its the right way. I do not understand how to ...
2
votes
1answer
261 views

Should I temporarily disable foreign key constraints? How?

I have two tables: person: id serial primary key, name varchar(64) not null task: tenant_id integer not null references person (id) on delete cascade, customer_id integer not null ...
0
votes
1answer
113 views

Ms Access Relationship between subform and form

I am beginner with Ms Access and databases I am building meeting management database. I am stuck at some point please help Database purpose is to manage meetings with different firms which are in ...
0
votes
1answer
21 views

How to keep two table's data consistent when deleting records from one of them?

Say, I have two tables: students and course_scores . The attributes in students are student_id, name, sex; While the attributes in course_scores are student_id, course, score. When I delete the ...
1
vote
1answer
75 views

Error: Entities in 'DataBase' participate in the 'FK_MSCourse_Language' relationship. 0 related 'Language' were found. 1 'Language' is expected

Hi i try to get some Date from my Database but it wont work and i really have no Idea why. I get following Error: Error: Entities in 'DataBase' participate in the 'FK_MSCourse_Language' ...
0
votes
0answers
110 views

How to tell hibernate to generate a foreign key constraint with 'on update/delete restrict'

Hibernate generates foreign key constraints like this in PostgreSQL: ADD CONSTRAINT fk4027e58ea8b36313 FOREIGN KEY (fk_responsible_person) REFERENCES employee (id) MATCH SIMPLE ON ...
0
votes
1answer
69 views

Use Enums instead of foreign keys

After using Hibernate Enum Mapping again today I was wondering about whether it would be a good idea to stretch it a little bit more. To explain where my thought came from: of course we aim for a ...
0
votes
1answer
28 views

MySQL error 150 setting a second foreign key

I am having trouble setting multiple foreign keys in my house-letting database. A house has many rooms, which has many tenancies, each with a tenant. A tenant can have many tenancies. My database is ...
1
vote
1answer
35 views

MySQL errno 150 with foreign key

So I've been getting this error when I type this in: ALTER TABLE user_follow ADD FOREIGN KEY (follower,following) REFERENCES users(idusers) But I don't get an error when I separate the follower and ...
0
votes
0answers
54 views

Circular relationships in database model

Hi I have a question about some circular relationships that I am facing with my database design and from what I read circular relationships are not desired. I read a few more similar questions but ...
1
vote
2answers
113 views

Is it possible to create DataRelation 1:1 in c#?

In my app I use ORM Designer which supports only 1:1 relation. I have Items, Products, Shipping tables: Item has ProductId and ShippingId attributes which are foreign keys. I need to upload data ...
0
votes
3answers
82 views

Can I share a parent table's primary key as a foreign key between two or more child tables?

I have a database named tv_shows which is structured as: tv_shows(tv_show_id, tv_show_title, tv_show_desc, network, status) seasons(season_id, tv_show_id, season_no, season desc) ...

1 2 3 4 5 7