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 privilege is needed for a user to create tables in oracle?
I have my backup RMAN script called backup_rman.sh. I am on the target database. My catalog username/password is rman/rman. My catalog db is called rman. How would you run this shell script from the O/S such that it would run as a background process?
What is parameterized cursor in oracle?
Explain the family trees and connection by clause
What is difference between SUBSTR and INSTR?
What is the effect of setting the value 'FIRST_ROWS' for OPTIMIZER_GOAL parameter of the ALTER SESSION command ?
What are Clusters ?
How many types of auditing in Oracle?
What is a deadlock in SQL? How can you prevent it?
what is the difference between dbms and rdbms?
8. Display the client name and order date for all orders using the natural join keywords.
What is oracle sid?