candidate-key Questions
7
Solved
I am reading about candidate keys and composite keys. I came to know that
a candidate key can qualify as a primary key and it can be a single column or combination of columns
and a composite key ...
Retina asked 10/4, 2011 at 6:51
2
Solved
R = (A, B, C, D, E)
The functional dependencies are:
A -> B
ED -> A
BC -> E
It then lists the candidate keys as:
ACD, BCD, CDE
How are these candidate keys derived from the above FDs?
S...
Obbard asked 20/1, 2014 at 0:9
1
Solved
Please consider the following table definition...
Table Definition
CREATE TABLE [dbo].[Folders](
[Id] [int] IDENTITY(1,1) NOT NULL,
[UserId] [int] NOT NULL,
[ParentFolderId] [int] NULL
PRIMARY...
Depilate asked 24/2, 2018 at 22:33
2
Given a relation schema R with n attributes R(A1, A2, ..., An). What’s the maximum number of possible super-keys for R? Please justify your answer.
Given a relation schema R with n attributes R(A1...
Manlike asked 20/3, 2016 at 6:58
3
Solved
At https://web.archive.org/web/20130514174856/http://databases.about.com/cs/specificproducts/g/determinant.htm I found this by Mike Chapple:
Definition: A determinant in a database table is any at...
Asante asked 23/5, 2013 at 6:5
2
Solved
I'm writing some software that requires storing items in a database, the items need to have a 'priority' so we end up with
ID | Name | Priority
--------+--------------+----------
1 | Pear | 4
2...
Unmeriting asked 12/1, 2012 at 16:40
1
© 2022 - 2024 — McMap. All rights reserved.