Difference between revisions of "Database Queries"

From rbachwiki
Jump to navigation Jump to search
Line 1: Line 1:
=Select Command=
=Select Command=
* select * form tableName
; select * form tableName
* select column1, column2 from tableName
; select column1, column2 from tableName
** Select 2 columns for the tableName table
: Select 2 columns for the tableName table


[[#Select Command|Back To Top]]-[[Main_Page| Home]] - [[Oracle_SQL|Category]]
[[#Select Command|Back To Top]]-[[Main_Page| Home]] - [[Oracle_SQL|Category]]

Revision as of 19:03, 11 September 2017

Select Command

select * form tableName
select column1, column2 from tableName
Select 2 columns for the tableName table

Back To Top- Home - Category