what is the syntax of SELECT command?
Answers were Sorted based on User's Feedback
Answer / vsubbaiah
Select Distinct |fields * | from table name
where condition
group by column list
having grouped column
order by column
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / poovitha
select * from employee
Here,
employee refers "TABLE NAME"
* refers all records in the table
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / shree
select field1,field2,.........field n
from table nane
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / mohammed ashfaq
SELECT attr1,attr2..attrn
FROM TABLE1,TABLE2..TABLEn;
(IT IS SIMPLE SELECT)
(FOR COMPLEX SELECT)
SELECT attr1,attr2..attrn
FROM TABLE1,TABLE2..TABLEn
WHERE CONDITION;
| Is This Answer Correct ? | 0 Yes | 2 No |
What is the use of Redo Log Information ?
Explain the use of rows option in imp command.
How to enter a new row into a table interactively?
What is the usage of save points in oracle database?
Where do we use decode and case statements?
What is the function of Optimizer ?
Explain an exception?
Explain do view contain data?
What is forall Statement ?
How to update values in a table in oracle?
What is the difference between a primary key & a unique key?
How to create id with auto_increment on oracle?