Problem on getting value of another table to input to current table with NULL value
up vote
0
down vote
favorite
I am having a problem about getting the value of table
LeaveRequest(id, leave_from_date, leave_to_date, leave_status)
When i want to add id of the leave_request into table Attendance using this condition.
Attendance(user_id, attendance_date, leave_id)
The query statement is
SELECT `attendances`.`attendance_date`,`leave_requests`.`user_id`,`leave_requests`.`leave_from_date`,`leave_requests`.`leave_to_date`,`leave_requests`.leave_status FROM `attendances`, `leave_requests` WHERE `attendances`.`user_id` = `leave_requests`.`user_id` AND `leave_requests`.`leave_status` = 2 AND `attendances`.`attendance_date` BETWEEN `leave_requests`.`leave_from_date` AND `leave_requests`.`leave_to_date`
But when I insert this line into my current Attendance table
return $this->attendance()->create([
'attendance_date' => Carbon::now()->format('Y-m-d'),
'scan_in_time' => Carbon::now()->format('H:i:s'),
'attendance_status' => DB::RAW("CASE
WHEN scan_in_time >= '08:30:00' AND scan_in_time < '09:00:00' THEN '2'
WHEN scan_in_time > '09:00:00' AND scan_in_time < '17:00:00' THEN '3' ELSE '1' END"),
'scan_in_location' => request()->scan_in_location,
'scan_in_remarks' => request()->scan_in_remarks,
'leave_id' => DB::RAW("SELECT `leave_requests`.`id`
FROM `attendances`, `leave_requests`
WHERE `attendances`.`user_id` = `leave_requests`.`user_id`
AND `leave_requests`.`leave_status` = 2
AND `attendances`.`attendance_date` BETWEEN `leave_requests`.`leave_from_date` AND `leave_requests`.`leave_to_date`")
The value of leave_id is NULL in database. Is there anyway to improve this code so that leave_id is existed in Attendance table? Thank you
php laravel
add a comment |
up vote
0
down vote
favorite
I am having a problem about getting the value of table
LeaveRequest(id, leave_from_date, leave_to_date, leave_status)
When i want to add id of the leave_request into table Attendance using this condition.
Attendance(user_id, attendance_date, leave_id)
The query statement is
SELECT `attendances`.`attendance_date`,`leave_requests`.`user_id`,`leave_requests`.`leave_from_date`,`leave_requests`.`leave_to_date`,`leave_requests`.leave_status FROM `attendances`, `leave_requests` WHERE `attendances`.`user_id` = `leave_requests`.`user_id` AND `leave_requests`.`leave_status` = 2 AND `attendances`.`attendance_date` BETWEEN `leave_requests`.`leave_from_date` AND `leave_requests`.`leave_to_date`
But when I insert this line into my current Attendance table
return $this->attendance()->create([
'attendance_date' => Carbon::now()->format('Y-m-d'),
'scan_in_time' => Carbon::now()->format('H:i:s'),
'attendance_status' => DB::RAW("CASE
WHEN scan_in_time >= '08:30:00' AND scan_in_time < '09:00:00' THEN '2'
WHEN scan_in_time > '09:00:00' AND scan_in_time < '17:00:00' THEN '3' ELSE '1' END"),
'scan_in_location' => request()->scan_in_location,
'scan_in_remarks' => request()->scan_in_remarks,
'leave_id' => DB::RAW("SELECT `leave_requests`.`id`
FROM `attendances`, `leave_requests`
WHERE `attendances`.`user_id` = `leave_requests`.`user_id`
AND `leave_requests`.`leave_status` = 2
AND `attendances`.`attendance_date` BETWEEN `leave_requests`.`leave_from_date` AND `leave_requests`.`leave_to_date`")
The value of leave_id is NULL in database. Is there anyway to improve this code so that leave_id is existed in Attendance table? Thank you
php laravel
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am having a problem about getting the value of table
LeaveRequest(id, leave_from_date, leave_to_date, leave_status)
When i want to add id of the leave_request into table Attendance using this condition.
Attendance(user_id, attendance_date, leave_id)
The query statement is
SELECT `attendances`.`attendance_date`,`leave_requests`.`user_id`,`leave_requests`.`leave_from_date`,`leave_requests`.`leave_to_date`,`leave_requests`.leave_status FROM `attendances`, `leave_requests` WHERE `attendances`.`user_id` = `leave_requests`.`user_id` AND `leave_requests`.`leave_status` = 2 AND `attendances`.`attendance_date` BETWEEN `leave_requests`.`leave_from_date` AND `leave_requests`.`leave_to_date`
But when I insert this line into my current Attendance table
return $this->attendance()->create([
'attendance_date' => Carbon::now()->format('Y-m-d'),
'scan_in_time' => Carbon::now()->format('H:i:s'),
'attendance_status' => DB::RAW("CASE
WHEN scan_in_time >= '08:30:00' AND scan_in_time < '09:00:00' THEN '2'
WHEN scan_in_time > '09:00:00' AND scan_in_time < '17:00:00' THEN '3' ELSE '1' END"),
'scan_in_location' => request()->scan_in_location,
'scan_in_remarks' => request()->scan_in_remarks,
'leave_id' => DB::RAW("SELECT `leave_requests`.`id`
FROM `attendances`, `leave_requests`
WHERE `attendances`.`user_id` = `leave_requests`.`user_id`
AND `leave_requests`.`leave_status` = 2
AND `attendances`.`attendance_date` BETWEEN `leave_requests`.`leave_from_date` AND `leave_requests`.`leave_to_date`")
The value of leave_id is NULL in database. Is there anyway to improve this code so that leave_id is existed in Attendance table? Thank you
php laravel
I am having a problem about getting the value of table
LeaveRequest(id, leave_from_date, leave_to_date, leave_status)
When i want to add id of the leave_request into table Attendance using this condition.
Attendance(user_id, attendance_date, leave_id)
The query statement is
SELECT `attendances`.`attendance_date`,`leave_requests`.`user_id`,`leave_requests`.`leave_from_date`,`leave_requests`.`leave_to_date`,`leave_requests`.leave_status FROM `attendances`, `leave_requests` WHERE `attendances`.`user_id` = `leave_requests`.`user_id` AND `leave_requests`.`leave_status` = 2 AND `attendances`.`attendance_date` BETWEEN `leave_requests`.`leave_from_date` AND `leave_requests`.`leave_to_date`
But when I insert this line into my current Attendance table
return $this->attendance()->create([
'attendance_date' => Carbon::now()->format('Y-m-d'),
'scan_in_time' => Carbon::now()->format('H:i:s'),
'attendance_status' => DB::RAW("CASE
WHEN scan_in_time >= '08:30:00' AND scan_in_time < '09:00:00' THEN '2'
WHEN scan_in_time > '09:00:00' AND scan_in_time < '17:00:00' THEN '3' ELSE '1' END"),
'scan_in_location' => request()->scan_in_location,
'scan_in_remarks' => request()->scan_in_remarks,
'leave_id' => DB::RAW("SELECT `leave_requests`.`id`
FROM `attendances`, `leave_requests`
WHERE `attendances`.`user_id` = `leave_requests`.`user_id`
AND `leave_requests`.`leave_status` = 2
AND `attendances`.`attendance_date` BETWEEN `leave_requests`.`leave_from_date` AND `leave_requests`.`leave_to_date`")
The value of leave_id is NULL in database. Is there anyway to improve this code so that leave_id is existed in Attendance table? Thank you
php laravel
php laravel
asked Nov 20 at 4:02
Huy Nguyen
177
177
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53386042%2fproblem-on-getting-value-of-another-table-to-input-to-current-table-with-null-va%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown