Computer Science, asked by UtkarshRathore, 1 year ago

When you want to print those records which are fetched from your database .what will you design?

Answers

Answered by pandu142
11
The SELECT Statement

The first SQL command you will learn, and the one you will use most frequently, is SELECT. In this lesson, you begin by learning how to fetch data records from a single table.

A SELECT statement begins with the SELECTkeyword and is used to retrieve information from MySQL database tables. You must specify the table name to fetch data from—using the FROM keyword—and one or more columns that you want to retrieve from that table.

Keywords and Statements

A keyword is a word that is 

Similar questions