Suppose i have a table A which consists of only 1 candidate key
then what is true ?
If it is in 3NF, then it is also in BCNF or not ?
Suppose i have a table A which consists of only 1 candidate key
then what is true ?
If it is in 3NF, then it is also in BCNF or not ?
If it is in 3NF, then it is also in BCNF or not ?
Not necessarily. In general, 3NF states that there is no PFD (partial functional dependency) whereas BCNF states that there is no independent candidate key present. Means, even if there is multiple candidate key there will one super key and other keys will be a subset of the super key.
Since in your case, there is only one candidate key, I would say it's in both 3NF as well as BCNF since both the condition holds
X → Y is a trivial functional dependency (Y ⊆ X)
X is a super key for schema R
See Boyce–Codd normal form for more information