Hints
Select query used to select all the values from table by using * symbol or else can get value of particular column by useing column name.In select query can use different condition with "And","or" and something like "not like","like","distinct",etc..,
In following example, Get all the values of table
|
|
Get all row of the works_on table
select * from Works_on;
|