Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> MySQL

เงื่อนไขในการตรวจสอบวันที่ครบกำหนดและบันทึกวันที่ปัจจุบันใน MySQL โดยที่ข้อ


หากต้องการตรวจสอบเงื่อนไขดังกล่าว ให้ใช้ IF() ใน MySQL

ให้เราสร้างตาราง -

ตัวอย่าง

mysql> create table demo89
   -> (
   -> duedate date
   -> );
Query OK, 0 rows affected (0.78

แทรกระเบียนบางส่วนลงในตารางโดยใช้คำสั่ง insert -

ตัวอย่าง

mysql> insert into demo89 values('2020-01-10');
Query OK, 1 row affected (0.55

mysql> insert into demo89 values(null);
Query OK, 1 row affected (0.13

mysql> insert into demo89 values('2020-11-29');
Query OK, 1 row affected (0.15

mysql> insert into demo89 values('2019-11-29');
Query OK, 1 row affected (0.09

แสดงบันทึกจากตารางโดยใช้คำสั่ง select -

ตัวอย่าง

mysql> select *from demo89;

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

ผลลัพธ์

+------------+

| duedate    |

+------------+

| 2020-01-10 |

| NULL       |

| 2020-11-29 |

| 2019-11-29 |

+------------+

4 rows in set (0.00 sec)

ต่อไปนี้เป็นแบบสอบถามเพื่อตรวจสอบวันที่ครบกำหนดและบันทึกวันที่ปัจจุบัน -

ตัวอย่าง

mysql> select if (duedate is null
   -> or duedate < curdate(),'Wrong Date',duedate) as Result
   -> from demo89;

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

ผลลัพธ์

+------------+

| Result     |

+------------+

| Wrong Date |

| Wrong Date |

| 2020-11-29 |

| Wrong Date |

+------------+

4 rows in set (0.00 sec)