Select __________ from instructor where dept name= ’Comp. Sci.’;Which of the following should be used to find the mean of the salary?

🎲 Try a Random Question  |  Total Questions in Quiz: 53  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
SQL Server Practice Test: Manipulating Data with Select — practice the complete quiz, review flashcards, or try a random question.

The SELECT statement in SQL Server is used to retrieve data from a database.  It can also be used to: Filter data Analyze data Assign values to local variables Create a new table from a SELECT query result  Here are some examples of SELECT statements: SELECT column1, column2 FROM table1, table2 WHERE column2='value' In this statement, the SELECT clause specifies one or more columns to retrieve. To specify multiple columns, use a comma and a space between column names. SELECT AS/SELECT INTO This method creates a new table from the existing one based on the SELECT query result... Show more

Select __________ from instructor where dept name= ’Comp. Sci.’;<br />Which of the following should be used to find the mean of the salary?