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 |
how to join query for one source type is oracle another source type is sql server ?
Give the Types of modules in a form?
Difference between pre-select and pre-query
Can a Tablespace hold objects from different Schemes ?
What are the different windows events activated at runtime ?
write a sql query following source looking like below column1 column2 101,102,103 abc,def,ghi 1001,1002,1003 a,b,c i want the output column1 column1 101 abc 102 def 103 ghi 1001 a 1002 b 1003 c
what is difference between where clause and having clause?
Explain temporal data types in oracle
Is there a combination of "like" and "in" in sql?
What are the values that can be specified for OPTIMIZER MODE Parameter ?
How to write a left outer join with the where clause in oracle?
How to bring a tablespace online?