Viewing 15 posts - 46 through 60 (of 79 total)
actullay i am fresh in this field so its ok(LATE HALFDAY). i have to learn more from the internet and the forum like sql server central
yes your query is giving...
June 18, 2013 at 7:12 am
i do like this
when convert(varchar(10),t.[Timein],108) >= convert(varchar(10),t4.ltime,108) and
spendtime is not null then 'LATE '
else '' end
+ case when (t4.minute- Time_Minutes) >= 120 then + 'HALF DAY'
else...
June 18, 2013 at 7:04 am
i use this
when convert(varchar(10),t.[Timein],108) >= convert(varchar(10),t4.ltime,108) and spendtime is not null then 'LATE -'
else '' end
+ case when (t4.minute- Time_Minutes) >= 120 then +...
June 18, 2013 at 6:50 am
yes this is what i want Thanks
but it gives me like this
Remarks
LateHALFDAY
i want this
late / halfday
when only halfday remarks show this Halfday
and when late and halfday remark show...
June 18, 2013 at 6:37 am
i am making attendance project for a factory.employee come in factory time in and time out. on sunday employee have off day and some time employee get absent in my...
June 17, 2013 at 7:01 am
sir please implemenet on this query
select
[date],
min([Timein]) as First_Record,
sum(DATEDIFF(minute, [Timein], [Timeout])) as Time_Minutes
into #temp1 from Atend
where eid = 26446
group by [date]
GO
select
t.[date],
t.eid,
t.[Timein] as timein,
t.[Timeout] as timeout,
CONVERT(VARCHAR(8), DATEADD(minute, Time_Minutes, 0), 108) AS SpendTime,
case...
June 15, 2013 at 6:19 am
This is my calendar data structure
CREATE TABLE [dbo].[Calendar]
(
[Date] [datetime] NULL
)
i insert all 2013 months dates in this table
i want to show offday dates in database like this
date----------------------------eid----shift--------timein---------------------timeout--
2013-05-04 00:00:00.000--17031----G----2013-06-13 09:15:00.000-----2013-06-13 15:23:00.000
2013-05-04...
June 15, 2013 at 5:30 am
sir i dont know how its happen becouse i create only one post
June 13, 2013 at 6:10 am
Viewing 15 posts - 46 through 60 (of 79 total)