In one-to-many relationship the table in ‘one’ side is called _______ July 20, 2021July 20, 2021 administrator In one-to-many relationship the table in ‘one’ side is called _______ParentExplanation: NoneChildOwnerNone of Options are Correct
Which database object is ideal to view, change, andanalyze datain different ways ? July 20, 2021July 20, 2021 administrator Which database object is ideal to view, change, andanalyze datain different ways ?QueryExplanation: NoneTableFormReport
Which of the following enables us to view data from a table based on a specific criterion July 20, 2021July 20, 2021 administrator Which of the following enables us to view data from a table based on a specific criterionQueryExplanation: NoneFormReportMacro
In which state one gathers and list all the necessary fields for the database design project. July 20, 2021July 20, 2021 administrator In which state one gathers and list all the necessary fields for the database design project.Data DefinitionExplanation: NoneData RefinementEstablishing RelationshipNone of Options are Correct
In one-to-many relationship the table on ‘many’ side is called _______ July 20, 2021July 20, 2021 administrator In one-to-many relationship the table on ‘many’ side is called _______ChildExplanation: NoneParentMasterSister
What are the different view to present a Table ? July 20, 2021July 20, 2021 administrator What are the different view to present a Table ?All Of Options are correctExplanation: NoneDesign ViewDatasheet ViewPivote TableView
What do you mean by one to many relationship between Teacher and Class table? July 20, 2021July 20, 2021 administrator What do you mean by one to many relationship between Teacher and Class table?One teacher can have many classesExplanation: NoneOne class may have many teachersMany classes may have many teachersMany teachers may have many classes
“SELECT name __ instructor name, course idFROM instructor, teachesWHERE instructor.ID= teaches.ID; Which keyword must be used here to rename the field name?“ July 19, 2021July 19, 2021 administrator “SELECT name ____ instructor name, course id FROM instructor, teaches WHERE instructor.ID= teaches.ID; Which keyword must be used here to rename the field name?AsExplanation: As keyword is used to rename.FromRenameJoin“
In the given query which of the keyword has to be inserted? INSERT INTO employee _____ (1002,Joey,2000); July 19, 2021July 19, 2021 administrator “In the given query which of the keyword has to be inserted? INSERT INTO employee _____ (1002,Joey,2000);ValuesExplanation: Value keyword has to be used to insert the values into the table.RelationTableField“
Which of the following statements contains an error? July 19, 2021July 19, 2021 administrator Which of the following statements contains an error?Select empid where empid = 1009 and lastname = ‘GELLER’;Explanation: This query do not have from clause which specifies the relation from which the values has to be selected. Select * from emp where empid = 10003;Select empid from emp where empid = 10006;Select empid from emp;