FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

WHAT IS PROGRAMMING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
What word is missing from the SQL line below?SELECT * ____ CUSTOMER;
A
FROM
B
WHERE
C
SELECT
D
ORDER BY
Explanation: 

Detailed explanation-1: -You can use an asterisk character, *, to retrieve all the columns. In queries where all the data is found in one table, the FROM clause is where we specify the name of the table from which to retrieve rows.

Detailed explanation-2: -You can use the AND condition in the WHERE clause to specify more than 1 condition that must be met for the record to be selected. Let’s explore how to do this.

Detailed explanation-3: -What is a variable? A storage location with a unique name and a data type.

There is 1 question to complete.