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










share|improve this question


























    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










    share|improve this question
























      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










      share|improve this question













      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 20 at 4:02









      Huy Nguyen

      177




      177





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          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






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          404 Error Contact Form 7 ajax form submitting

          How to know if a Active Directory user can login interactively

          TypeError: fit_transform() missing 1 required positional argument: 'X'