|
Main Menu
Resources
|
SQL WHERE
SQL WHERE allow us to select the data conditionally according to condition being set when write the command. The SQL syntax will be: SELECT [COLUMN NAME] FROM [TABLE NAME] WHERE [CONDITION]
Let’s say, we only want to retrieve data from GameScores Table to get person that Scores is more than 2000. Table GameScores
SQL statement : SELECT PlayerName FROM GameScores WHERE Scores > 2000 Result:
|
||||||||||||||||||||||||

Printer friendly page