CBSE BOARD X, asked by ammu54833, 3 months ago

Which clause of Select statement helps to display specific data?

NEED SINCERE answer​

Answers

Answered by harshad6022
4

Explanation:

Selecting Data

The select statement is used to query the database and retrieve selected data that match the criteria that you specify. Here is the format of a simple select statement:

The column names that follow the select keyword determine which columns will be returned in the results. You can select as many column names that you'd like, or you can use a "*" to select all columns.

The table name that follows the keyword from specifies the table that will be queried to retrieve the desired results.

The where clause (optional) specifies which data values or rows will be returned or displayed, based on the criteria described after the keyword where.

Conditional selections used in the where clause:

The LIKE pattern matching operator can also be used in the conditional selection of the where clause. Like is a very powerful operator that allows you to select only rows that are "like" what you specify. The percent sign "%" can be used as a wild card to match any possible character that might appear before or after the characters specified. 

Attachments:
Answered by mshikhar802
2

Answer:

the where Clause specifies which data values or rows will be returned or displayed based on the criteria describe after the keyword where.

Similar questions