mysql SELECT statement


  Translation results:

英[sɪˈlekt] 美[sɪˈlɛkt]

vt.Select; select; select

adj. Selected; selected; harshly selected; <口> like to pick three Picky, picky

Third person singular: selects Present participle: selecting Past tense: selected Past participle: selected

mysql SELECT statementsyntax

Function: Used to select data from the table. The results are stored in a results table (called a result set).

Syntax: SELECT column name FROM table name and SELECT * FROM table name

Note: SQL statements are not case sensitive. SELECT is equivalent to select.

mysql SELECT statementexample

//获取persons表中LastName和FirstName列的内容
SELECT LastName,FirstName FROM Persons;

Popular Recommendations

Home

Videos

Q&A