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 exact definition for pointer?
How would you extract DDL of a table without using a GUI tool?
How to use group functions in the select clause using oracle?
What is oracle datasource?
How can we Update a table with out using UPDATE command?
Explain what are synonyms used for?
How can we manage the gap in a primary key column created by a sequence? Ex:a company has empno as primary key generated by a sequence and some employees leaves in between.What is the best way to manage this gap?
How to display the hierarchy of employee and managers without using connect by prior.
After using set unused can we enable the column again to use? Please give me some answers....
what is mean by prmary key and foreign key and how can we diffrentiate that? Please answer me. Advance thanks.
What do you mean by merge in oracle and how can you merge two tables?
what is difference between cartesian join & cross join even they give same result?