Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have two tables that are

Table : Employee
  Emp_Id      | Emp_name
--------------|-----------------
       1     | boy
       2      | arun
       3      | suresh
       4      | saju

Table: Attendance
Emp_Id|  date    |status
------|----------|---------
1     |10/03/2013|  P
2     |10/03/2013|  P
3     |10/03/2013|  P
4     |10/03/2013|  P

When Event occurs
insert into Attendance table Emp_Id from Employee table date and status is default
which sql query can I use for this
Posted
Updated 10-Mar-13 1:34am
v4

 
Share this answer
 
By adding default constraint you can achieve this goal.

SQL
ALTER TABLE Attendance  
 ADD CONSTRAINT df_Constraint_Attendance_Date
 DEFAULT GETUTCDATE() FOR [Date]
 
 GO
 
 ALTER TABLE Attendance  
 ADD CONSTRAINT df_Constraint_Attendance_Status
 DEFAULT 'P' FOR [Status]
 
 
 GO
 
 ---Example
 INSERT INTO Attendance (Emp_Id) VALUES(1)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900