Sponsored Links

Interview Questions



INTERVIEW QUESTIONS DATABASE SQL DETAILS

Question: What is output of following query
Select 2 from employee;

Answer: It depends upon number of rows in table. This query will print 2 as many times as rows in table.

Category SQL Interview Questions & Answers - Exam Mode / Learning Mode
Rating (0.3) By 7178 users
Added on 12/18/2012
Views 71186
Rate it!

Question: What is output of following query
Select 2 from employee;


Answer:

It depends upon number of rows in table. This query will print 2 as many times as rows in table. Source: CoolInterview.com

Answered by: Ritesh | Date: 1/30/2008 | Contact Ritesh Contact Ritesh

So select 2 from employee means
It retrieves second column values from employee table.I don't whether this answer is correct or not but this is my perception. Source: CoolInterview.com

Answered by: ramakrishna | Date: 2/6/2008 | Contact ramakrishna Contact ramakrishna

This query displays the value 2 for all rows in a specified table. Source: CoolInterview.com

Answered by: Ravikumar.S | Date: 2/9/2008 | Contact Ravikumar.S Contact Ravikumar.S

It will show column name as 2 and data in column is also 2 Source: CoolInterview.com

Answered by: Prachi Vashist | Date: 2/11/2008 | Contact Prachi Vashist Contact Prachi Vashist

It will generate a new column in the result set with 2 as the value in all the rows. The number os rows will be the total number of rows present in the employee table. Source: CoolInterview.com

Answered by: T Swetha | Date: 2/12/2008 | Contact T Swetha Contact T Swetha

It gives error because column don't start with number. Source: CoolInterview.com

Answered by: surendra | Date: 2/12/2008 | Contact surendra Contact surendra

It will give an output
2
2
2
2
2
.
.
.
(upto number of rows in employee table) Source: CoolInterview.com

Answered by: Abhishek V Sonwani | Date: 2/27/2008 | Contact Abhishek V Sonwani Contact Abhishek V Sonwani

It will select Second column from employee table. Source: CoolInterview.com

Answered by: varsha | Date: 3/6/2008 | Contact varsha Contact varsha

The output will be just 2. Source: CoolInterview.com

Answered by: narayanan | Date: 3/24/2008 | Contact narayanan Contact narayanan

IT DISPLAY 2.(NUMBER TIMES MUST BE DEPENDING ON YOUR NUMBER OF ROWS IN YOUR TABLE Source: CoolInterview.com

Answered by: NAGASWAMY | Date: 3/27/2008 | Contact NAGASWAMY Contact NAGASWAMY

Second row of the employee table will be selected. Source: CoolInterview.com

Answered by: raghu | Date: 3/30/2008 | Contact raghu Contact raghu

It will give '2' as column name and column data .no. of rows are same as no. of rows of Employee table. Source: CoolInterview.com

Answered by: Leena | Date: 4/3/2008 | Contact Leena Contact Leena

this query will return 2 as amany rows in hte tables
2
2
2
2
2
2
2
uptill no of rows Source: CoolInterview.com

Answered by: Shailesh Vaid | Date: 4/3/2008 | Contact Shailesh Vaid Contact Shailesh Vaid

It will display the no.2 as the output with no column name. Source: CoolInterview.com

Answered by: jojo | Date: 4/9/2008 | Contact jojo Contact jojo

this query returns 2 for the no of rows in employee table with no column name .if employee table having 5 rows it returns:
no column name
-------------
2
2
2
2
2 Source: CoolInterview.com

Answered by: chandana | Date: 4/28/2008 | Contact chandana Contact chandana

SQL> select * from emp;

NAME SALARY
-------------------- ----------
satyam 25000
Veena 30000
Abhishek 22000
Monica 25000
veena 31000
nitin 22000
rakesh 21000
mummy 15000

8 rows selected.

SQL> select 2 from emp;

2
----------
2
2
2
2
2
2
2
2

8 rows selected.
Yes, it will display 2 as an output and will depend on number of records consisting in table. Source: CoolInterview.com

Answered by: Satyam | Date: 5/15/2008 | Contact Satyam Contact Satyam

It will dispay 2 as an ouput and the number of rows as an output will dpend on number of records existing in table.
select 2 from emp;
2
2
2
2
2
2
2
Source: CoolInterview.com

Answered by: Satyam | Date: 5/30/2008 | Contact Satyam Contact Satyam

it will display n time 2. where n is number of row available. Source: CoolInterview.com

Answered by: vineet jha | Date: 8/12/2008 | Contact vineet jha Contact vineet jha

It will give an output
2
2
2
2
2
.
.
.
(upto number of rows in employee table) Source: CoolInterview.com

Answered by: Varun | Date: 4/28/2010 | Contact Varun Contact Varun

Bydefault emp table contains 14records, for each and every row 2 will be displayed.
The output is
2
__
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2 Source: CoolInterview.com

Answered by: kiran | Date: 8/16/2010 | Contact kiran Contact kiran


If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
  • There should not be any Spelling Mistakes.
  • There should not be any Gramatical Errors.
  • Answers must not contain any bad words.
  • Answers should not be the repeat of same answer, already approved.
  • Answer should be complete in itself.
Name :*
Email Id :*
Answer :*
Verification Code Code Image - Please contact webmaster if you have problems seeing this image code Not readable? Load New Code
Process Verification Enter the above shown code: *
Inform me about updated answers to this question

Related Questions
View Answer
What is normalization and different kinds of normalization?
View Answer
How to testdata loading in database testing?
View Answer
What columns would you use as a clustered index on a retail store address table?
View Answer
what is the query for to select multiple columns to generate single row in the sql and how come we can bring grid views in sql for getting those datas are demolished

View Answer
What is a clustered index?
View Answer
What is the difference between @@identity and SCOPE_IDENTITY()?
View Answer
1. How to create a new table?
2. How to insert another column into the table?
View Answer
What is the use of indexes?Explain about it?
View Answer
lets i have a table "bapi" having 6 field like this
f1 f2 f3 f4 f5 f6
... ... .. ... ... ...
p r o m o d

i want to retrive all the data by using select statement and my output will be look like this:
xyz
...
p
r
o
m
o
d
f1 f2 f3 f4 f5 f6
... ... .. ... - SQL Interview Questions & Answers"> View Answer
what is the difference between replace and translate functions?
View Answer
How to delete same id in rows?
For example empid=5 repeated for times in rows. How to delete which sql query is used?
View Answer
Difference between decode and case.
in which case we are using case and in which case we are using decode?
with an example.

View Answer
How to retrieving the data from 11th column to n th column in a table.

View Answer
what is the difference between oracle,sql and sql server

View Answer
on index
why u need indexing ? where that is stroed
and what u mean by schema object?
for what purpose we are using view

View Answer
I have a table with duplicate names in it. Write me a query which returns only duplicate rows with number of times they are repeated.

View Answer
Difference between Stored Procedure and Trigger

View Answer
When using a count(disitnct) is it better to use a self-join or temp table to find redundant data, and provide an example?

View Answer
What is the advantage to use trigger in your PL?

View Answer
What the difference between UNION and UNIONALL?

View Answer

Please Note: We keep on updating better answers to this site. In case you are looking for Jobs, Pls Click Here Vyoms.com - Best Freshers & Experienced Jobs Website.

View All SQL Interview Questions & Answers - Exam Mode / Learning Mode



User Options
India News Network

Latest 20 Questions
Payment of time- barred debt is: (a) Valid (b) Void (c) Illegal (d) Voidable
Consideration is defined in the Indian Contract Act,1872 in: (a) Section 2(f) (b) Section 2(e) (c) Section 2(g) (d) Section 2(d)
Which of the following is not an exception to the rule, "No consideration, No contract": (a) Natural love and affection (b) Compensation for involuntary services (c) Completed gift (d) Agency
Consideration must move at the desire of: (a) The promisor (b) The promisee (c) The promisor or any other party (d) Both the promisor and the promisee
An offer which is open for acceptance over a period of time is: (a) Cross Offer (b) Counter Offer (c) Standing Offer (d) Implied Offer
Specific offer can be communicated to__________ (a) All the parties of contract (b) General public in universe (c) Specific person (d) None of the above
_________ amounts to rejection of the original offer. (a) Cross offer (b) Special offer (c) Standing offer (d) Counter offer
A advertises to sell his old car by advertising in a newspaper. This offer is caleed: (a) General Offer (b) Special Offer (c) Continuing Offer (d) None of the above
In case a counter offer is made, the original offer stands: (a) Rejected (b) Accepted automatically (c) Accepted subject to certain modifications and variations (d) None of the above
In case of unenforceable contract having some technical defect, parties (a) Can sue upon it (b) Cannot sue upon it (c) Should consider it to be illegal (d) None of the above
If entire specified goods is perished before entering into contract of sale, the contract is (a) Valid (b) Void (c) Voidable (d) Cancelled
______________ contracts are also caled contracts with executed consideration. (a) Unilateral (b) Completed (c) Bilateral (d) Executory
A offers B to supply books @ Rs 100 each but B accepts the same with condition of 10% discount. This is a case of (a) Counter Offer (b) Cross Offer (c) Specific Offer (d) General Offer
_____________ is a game of chance. (a) Conditional Contract (b) Contingent Contract (c) Wagering Contract (d) Quasi Contract
There is no binding contract in case of _______ as one's offer cannot be constructed as acceptance (a) Cross Offer (b) Standing Offer (c) Counter Offer (d) Special Offer
An offer is made with an intention to have negotiation from other party. This type of offer is: (a) Invitation to offer (b) Valid offer (c) Voidable (d) None of the above
When an offer is made to the world at large, it is ____________ offer. (a) Counter (b) Special (c) General (d) None of the above
Implied contract even if not in writing or express words is perfectly _______________ if all the conditions are satisfied:- (a) Void (b) Voidable (c) Valid (d) Illegal
A specific offer can be accepted by ___________. (a) Any person (b) Any friend to offeror (c) The person to whom it is made (d) Any friend of offeree
An agreement toput a fire on a person's car is a ______: (a) Legal (b) Voidable (c) Valid (d) Illegal



Fresher Jobs | Experienced Jobs | Government Jobs | Walkin Jobs | Company Profiles | Interview Questions | Placement Papers | Companies In India | Consultants In India | Colleges In India | Exams In India | Latest Results | Notifications In India | Call Centers In India | Training Institutes In India | Job Communities In India | Courses In India | Jobs by Keyskills | Jobs by Functional Areas

Testing Articles | Testing Books | Testing Certifications | Testing FAQs | Testing Downloads | Testing Interview Questions | Testing Jobs | Testing Training Institutes

Gate Articles | Gate Books | Gate Colleges | Gate Downloads | Gate Faqs | Gate Jobs | Gate News | Gate Sample Papers | Gate Training Institutes

MBA Articles | MBA Books | MBA Case Studies | MBA Business Schools | MBA Current Affairs | MBA Downloads | MBA Events | MBA Notifications | MBA FAQs | MBA Jobs
MBA Job Consultants | MBA News | MBA Results | MBA Courses | MBA Sample Papers | MBA Interview Questions | MBA Training Institutes

GRE Articles | GRE Books | GRE Colleges | GRE Downloads | GRE Events | GRE FAQs | GRE News | GRE Training Institutes | GRE Sample Papers

IAS Articles | IAS Books | IAS Current Affairs | IAS Downloads | IAS Events | IAS FAQs | IAS News | IAS Notifications | IAS UPSC Jobs | IAS Previous Question Papers
IAS Results | IAS Sample Papers | IAS Interview Questions | IAS Training Institutes | IAS Toppers Interview

SAP Articles | SAP Books | SAP Certifications | SAP Companies | SAP Study Materials | SAP Events | SAP FAQs | SAP Jobs | SAP Job Consultants
SAP Links | SAP News | SAP Sample Papers | SAP Interview Questions | SAP Training Institutes |




Copyright ©2003-2024 CoolInterview.com, All Rights Reserved.
Privacy Policy | Terms and Conditions