we have emp table like Ename,EDOJ,EDOB with Column
structure.but we want to know the employee Age.How? Any
Body Plz
Answer Posted / rajesh k. gupta
Hi,
In order to answer your question I would like to put all
three possible answers as follows:-
1.If You want to find out the age of employee as on the
date of Joining (Field name EDOJ) then Query will be
select *,datediff(year,EDOB,EDOJ) as Eage from emp
2. If you want to find out the age of employees as on
current date, query will be as follows:-
select *,datediff(year,EDOB,getdate()) from emp
3. If you want to find out age as on specific date stored
and taken from other variable then query will be :-
You need to declare a variable as datetime then need to
tore its value to it.
declare @dtb datetime
set @dtb='1990/01/10'
select *,datediff(year,EDOB,@dtb) from emp
---------------------------------------
For any clarification Please feel free to contact me.
Rajesh
9342284359
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
How can you set the threshold at which sql server will generate keysets asynchronously?
Explain the database you used in your final year project?
What command is used to rename the database?
Describe how to use linked server?
Do you know what are the reporting services components?
Why de-normalization required?
How to deploy the Report?
What is join query?
Explain index in sql server?
What are the different Authentication modes in SQL Server and how can you change authentication mode?
How to create a dynamic cursor with the dynamic option?
What are a scheduled jobs or what is a scheduled tasks?
What are the advantages of user defined function?
Explain log shipping?
What is the main purpose of having conversation group?