Skip to content
Loading
Find Min Time in Sql
  • select [ShiftId] ,min(Starttime) as stratTime from tableName where mode='in' group by ShiftId
    +1
  • Amit Gupta
    Select shiftId, Min(startTime) as StartTime from tablename group by shiftid
    +1