|
Main Menu
Resources
|
SQL SELECT
Let's start from the displaying data from database's table. Let's see at this SELECT Command which is: SELECT [COLUMN NAME] FROM [TABLE NAME] It's look similar with what the Basic English look like: SELECT one column of Information FROM a database's Table
Table GameScores
1. SQL statement for Select Single Column from Table SELECT PlayerName FROM GameScores Result:
2. SQL Statement for Select All Column from Table SELECT * FROM GameScores Result:
|
|||||||||||||||||||||||||||||||||||||||||||||||||

Printer friendly page