Viewing 6 posts - 1 through 6 (of 6 total)
I need to Get the utilization in the hour format of HH:MM .......
May 5, 2013 at 10:26 pm
K, I need to change the format of the Date
April 10, 2013 at 11:07 pm
Company_ID Employee_ID In_Time Out_Time Remarks Entry_Date
17921Task Completed ...
April 8, 2013 at 11:48 pm
MY employee Table contain CREATE TABLE EmployeeTable(ID INT IDENTITY NOT NULL PRIMARY KEY,Department_ID INT,
Employee_Name VARCHAR(100),Designation VARCHAR(100),Salary BIGINT,DOJ DATETIME)
I think these r the requirments u need........
April 5, 2013 at 3:56 am
Sorry to disturb you again,Pls check and correct the code
Declare @CurStudent cursor
Declare @Name VARCHAR(100)
Declare @Dept_ID INT
Declare @Department VARCHAR(100)
Declare @Fees NUMERIC(10,4)
Declare @StudentStatus varchar(100)
Declare @DOJ DATETIME
CREATE table #tempTable(TempName VARCHAR(100), TempDept_ID INT,TempDepartment...
April 4, 2013 at 7:14 am
Since i am starter in sql,they ask me to create a table with student data that include (Dept_ID,Name,Department,Fees,StudentStatus,DOJ)
and they ask to retrive the data into another table which contains sum(fees)...
April 4, 2013 at 6:58 am
Viewing 6 posts - 1 through 6 (of 6 total)