Queries are used to retrieve data from the database
The correct clause to retrieve only data about the supplier with identification number 85317 is WHERE supplier_id = 85317
<h3>How to determine the query</h3>
The clause is given as:
identification number = 85317
To retrieve data from the database, we make use of the WHERE clause followed by the column name, and the column value
In this case,
supplier_id represents the column name, while 85317 represents the value
Hence, the required clause is
WHERE supplier_id = 85317
Read more about database at:
brainly.com/question/1538272
Answer: design of the network
security for the network
documentation
identifying and fixing issues
Explanation: I just took the test
Answer: The component that is used for most amplifiers is the transistor. Semiconductors like gold,copper etc. are used although poor semiconductors like silicon are sometimes used as well. There are many electronic circuits that all under the amplifier category. The classification of an amplifier depends on the size of the signal and configuration.
<h3>Answer:</h3>
C. select
<h3>Explanation:</h3>
A. if you delete the words you can make them into a bulleted list
B. if you remove them you can make them into a bulleted list neither
D. Copying the words doesn't need for that
Hope it helped you
Using the computer language in JAVA to write a function code that output numbers in reverse
<h3>Writting the code in JAVA:</h3>
<em>import java.util.Scanner;</em>
<em>public class LabProgram {</em>
<em> public static void main(String[] args) {</em>
<em> Scanner scnr = new Scanner(System.in);</em>
<em> int[] userList = new int[20];</em>
<em> int numElements;</em>
<em> numElements = scnr.nextInt();</em>
<em> for (int i = 0; i < numElements; ++i) {</em>
<em> userList[i] = scnr.nextInt();</em>
<em> }</em>
<em> for (int i = numElements - 1; i >= 0; --i) {</em>
<em> System.out.print(userList[i] + " ");</em>
<em> }</em>
<em> System.out.println();</em>
<em> }</em>
<em>}</em>
See more about JAVA at brainly.com/question/12975450
#SPJ1