SELECT, FROM, WHEREConcept

Concept

The shape of every query

A query reads like a sentence: SELECT which columns, FROM which table, WHERE which rows. SELECT deal_id, amount FROM deals WHERE stage = 'closed_won'; Text values go in single quotes; the semicolon ends the statement.

0/5 answered · Enter to check