Explain the general syntax for a SELECT statements covering
all the options.
Answers were Sorted based on User's Feedback
Answer / us
SELECT select_list
[INTO new_table_]
FROM table_source
[WHERE search_condition]
[GROUP BY group_by_expression]
[HAVING search_condition]
[ORDER BY order_expression [ASC | DESC]
Is This Answer Correct ? | 12 Yes | 1 No |
Answer / rosemary masha
select* from table name
where last name='Faina'
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / dinesh sharma
select * from tablename(select all fields of the tables)
select f1,f2 from tablename (select selected fields(like
f1,f2)
select f1,f2,2 [f3] from tablename(select selected fields
plus one fields having default value is 2)
Is This Answer Correct ? | 0 Yes | 6 No |
What are the 18 schemas?
What is an application role and explain a scenario when you would use one?
What are defaults? Is there a column to which a default can't be bound?
In which database can extended stored procedures be added?
Define candidate key, alternate key, composite key?
30 Answers IAS, IBM,
What are the disadvantages of cursors? How can you avoid cursors?
What is bit datatype and what's the information that can be stored inside a bit column?
Does QTP Support the Propjects which are running in Dot Net? As we are starting with new project in Dot net need to use automation tool?Please advice & let me know what would be the best.
Write short notes on XSU and JAVA
To convert IDMS to DB2, how to deal with IDMS occurs and redefined clause?
What are the three types of database design?
Explain the general syntax for a SELECT statements covering all the options.