Computer Science, asked by cocharsh1991, 9 months ago

______ statement is used to retrieved records in a database

Answers

Answered by nivabora539
0

Answer:

" An update statement is used to modify records in a database. "

Answered by ghulamsarvar
1

Answer:

SELECT

Explanation:

SELECT is used to query into database to fetch records.

various syntax :

all columns/all row

Select * from <tablename>

all column/selective row

Select * from <tablename> WHERE <condition colx =pqr>

Few Columns

Selcect col1,col2...coln from <tablename>

Similar questions