Question: 1. If I wanted records from two different tables where only records from table1's Primary Key equal table2's Foreign Key, which FROM statement would expect

1. If I wanted records from two different tables where only records from table1's Primary Key equal table2's Foreign Key, which FROM statement would expect to see

A) table1 INNER JOIN table2 ON table1.PrimaryKey = table2.ForeignKey

B) table1 INNER JOINS table2 ON table1.PrimaryKey = table2.ForeignKey

C) table1 OUTER JOIN table2 ON table1.PrimaryKey = table2.ForeignKey

D) table1.PrimaryKey INNER JOIN table2.ForeignKey

2. What term is used to state that "If there is a value in a foreign key in one table, then there MUST be the same value represented in the primary key of another table"?

A) Cross Reference

B) INNER JOIN

C) Identity Column

D) Referential Integrity

3. If I wanted my web site (WEBSITE1) to use data from another web site (WEBSITE2) to build a page, I would use

A) AJAX

B) A Dynamic Link Library

C) A webservice hosted on WEBSITE1

D) HTML Code

E) A webservice hosted on WEBSITE2

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!