Consider the following table, which maps an XML document to a relational database: Which statement is correct?

Question:

Consider the following table, which maps an XML document to a relational database:

CREATE TABLE NODE( ID CHAR(6) NOT NULL PRIMARY KEY, PARENT_ID CHAR(6), TYPE VARCHAR(9), LABEL VARCHAR(20),

Which statement is correct?

a. The above table assumes the presence of a DTD or XSD before the mapping can take place.

b. The table will require extensive querying resources since every single (e.g., XPath) navigation step requires a self-join on this table.

c. Using the above table, every XPath expression can be translated to a corresponding SQL query.

d. The table is not entirely normalized and still contains redundant information.

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question
Question Posted: