Question


Question 9 (1 point) Which choice below describes the function of the following SQL statement? SELECT ID, Last Name, First Na
Question 7 (1 point) Which of the following SQL WHERE clauses will select all students whose last name begins with S? where
with Databases 0:00 Essmat Al Mufti: Attempt 1 Question 5 (1 point) __ allows you to query many types of data from virtually
th Databases Essmat Al Mufti: Attempt 1 dataset binding source table adapter Question 2 (1 point) The. . control displays inf
0 0
Add a comment Improve this question Transcribed image text
Answer #1

9

Ans: simple query

Here it involved only single query.it means I don't have any multiple queries or any nested queries.so it is a simple query.

10

Ans: ORDER BY last_name ASC

It means it sorts the all last_names in ascending order.

ASC means it sorts in ascending order and DESC means it sorts in descending order

7

Ans: WHERE last_name LIKE "S%"

It means it lists out all the last names which are starts with 'S'

S% says that string starts with s and next letters can be anything.

8

Ans: dataset

Any thing that we get as output when we execute the query on the tables of database is said to be dataset.

5

Ans: SQL

SQL(Structured Query Language) is used to query many types of data from virtually any source

6

Ans: relational operators

Relational operators like && and || are used to provide multiple

Selections in queries.

For getting data from multiple tables we use these operators and joins. And for using multiple conditions.

2

Ans:data grid view

It means the data set we got through query are displayed in a format called data grid view.

3

Ans: table

A database table is organized into rows and columns.

It means data in a table are organized in rows and columns where each row consists of one entire record and columns used for fields of information like I'd,type,name and gender..

Add a comment
Know the answer?
Add Answer to:
Question 9 (1 point) Which choice below describes the function of the following SQL statement? SELECT...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • WRITE A SQL QUERY SQL SERVER Write a SELECT statement that returns one column from the...

    WRITE A SQL QUERY SQL SERVER Write a SELECT statement that returns one column from the Customers table named FullName that joins the LastName and FirstName columns. --       Format this column with the last name, a comma, a space, and the first name like this: --       Doe, John --       Sort the result set by last name in ascending sequence. --       Return only the contacts whose last name begins with a letter from M to Z. --  ...

  • Answer the following SQL study guide questions... Question 1 (1 point) Unless you assign a column...

    Answer the following SQL study guide questions... Question 1 (1 point) Unless you assign a column name in the base table. the column name in the result set is the same as the 1) unique syntax 2) column alias 3) qualification 4) all of the above Question 2 (1 point) Which clause specifies the number of rows that should be skipped before rows are returned from the result set? 1) FETCH 2) OFFSET 3) FIRST 4) NEXT Question 3 (1...

  • Question 10 (1 point) 10. If the following SQL statement is executed, what should be the...

    Question 10 (1 point) 10. If the following SQL statement is executed, what should be the query result? select ID, Name from Student where Hometown "San Antonio" D) Gina Lauren C) 1002 Gina 1004 Lauren B) Null A) San Antonio Question 7 (1 point) Saved Using the Student table, as shown below, to answer question 7 to 10 Name ID Grade Hometown Eric 1001 A Dallas Gina 1002 B San Antonio Eric 1003 Seattle Lauren 1004 A San Antonio Kathy...

  • Match the proper SQL Functions with the description that best fits its purpose. 1.    SELECT...

    Match the proper SQL Functions with the description that best fits its purpose. 1.    SELECT 2. INSERT 3. CREATE 4. ORDER BY 5. WHERE 6. DISTINCT ============================================================================== A.   Allows users to look at portions of data through querying. B.   Allows users to enter a new record (row) into a table. C.   Allows users to build a new object in a database (IE A database or table). D.   Allows users to sort their query results upon a given column. E.  ...

  • SQL Question: 2. To limit the result-set to a defined set of requirements, what will a...

    SQL Question: 2. To limit the result-set to a defined set of requirements, what will a user do? A. Filter the database. B. Sort the database. C. Categorize the database. D. Group the database. 1. Which statement is used to retrieve data from more than one table? A. SELECT * FROM Customer B. SELECT * FROM Customer HAVING CustOrders C. ...FROM Customer WHERE... D. ...FROM Customer JOIN CustOrders ON...

  • 1 pts Based on the following ER Diagram from the database called "Student Financial." What SQL...

    1 pts Based on the following ER Diagram from the database called "Student Financial." What SQL statement would you use to answer the following question? Student Tuition PKPSUID PK tutionID FirstName Pays (1.1-FX Student LastName SemesterCost Email Scholarships Department DueDate What are the names of all departments that contain the word "art" in them? (Provide a list of departments, no repeats) SELECT [Select] FROM Student WHERE [Select) Based on the following ER Diagram from the databa "Student Financial." What SQL...

  • Please refer to the following business scenarios: (i) Using SELECT statements of SQL, find the employee...

    Please refer to the following business scenarios: (i) Using SELECT statements of SQL, find the employee id, first name, last name, job title and email of all employees working in Asia (i.e. all countries coming from the region     ‘Asia’). This query must be implemented as a nested query! (ii) Using SELECT statements of SQL, find the employee id, first name, last name, job title and supervisor id of employees who had worked for more than 3 years and completed...

  • Which SQL statement retrieves the EmployeeName and City columns from the Employees table? O LIST EmployeeName,...

    Which SQL statement retrieves the EmployeeName and City columns from the Employees table? O LIST EmployeeName, City ON Employees; O FIND EmployeeName, City ON Employees; SELECT EmployeeName, City FROM Employees; O RETRIEVE EmployeeName, City FROM Employees; Which SQL statement finds the different cities in which national parks reside with no duplicate rows listed? SELECT DISTINCT city FROM natlpark ORDER BY city; O ORDER BY natlpark DISTINCT city; O ORDER BY city FROM natlpark; O SELECT city FROM natlpark ORDER BY...

  • 1. Given the table above, write an SQL Query that will select only those individuals that...

    1. Given the table above, write an SQL Query that will select only those individuals that scored 800 or higher, sorted by last name in ascending order. 2. Given the table above, write an SQL Query that will add a new entry for John Smith with a score of 834. The field id is auto incrementing. 3. Given the data below, write an SQL Query that will delete any values where the score is below 740. id Fname Lname Score...

  • SQL query QUESTION 34 Write a SQL statement that shows the months between orderdate and pubdate...

    SQL query QUESTION 34 Write a SQL statement that shows the months between orderdate and pubdate for order# 1004. Make sure to truncate any decimal points using the trunc function - hint: see page 373 of the book. T T Dararanh Enter SQL Statement Statement SELECT title, TRUNC (MONTHS_BETWEEN (orderdate, pubdate),0) ATHS FROM books JOIN orderitems USING (isbn) JOIN orders USING (order#) WHERE orderi = 1004; | DeMS Output QONA Output Results Script Output Explain 9 Autotrace Results: 3 TITLE...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT