Database Queries
Jump to navigation
Jump to search
Select Command
- select * from tableName
- Select all columns from the table
- select column1, column2 from tableName
- Select 2 columns for the tableName table
- select distinct column form tableName
- will display only unique results (no duplicates)