Skip to content
Advertisement

How to write SQL command that automatically assigns values from an equation?

  • I have this table called Ingredients, with these attributes:
  • Let’s say I give it these values:

I’m trying to create a SQL command that automatically assigns the ingredients’ freshness depending on the ingredient’s preserve time, date bought & today’s date.

The equation I want to use is:

I was able to do it this way, but it’s not what I want, since I don’t know how to get today’s date automatically nor to convert only the day from ing_bought which it’s data type is date:

So I was wondering since I’m new to the database concept & MYSQL, is there a command which gives me the current day as an int & how to get only the day from “date” data type & convert it to int so I can calculate it?

Advertisement

Answer

Suppose you can use this Update statement:

  • Now() function, give the current date.
  • DATEDIFF() function, give the difference of two dates in number of days.

Code:

Then you can view result like this:

[RESULT]:

enter image description here

[EDIT:] live example.

 ✓

 ✓
 
 ing_id | ing_name | preserve_time | ing_bought | freshness
 -----: | :------- | ------------: | :--------- | --------:
       1 | Meat     |            18 | 2020-10-20 |      null
 
 ing_id | ing_name | preserve_time | ing_bought | freshness | today      | days
 -----: | :------- | ------------: | :--------- | --------: | :--------- | ---:
      1 | Meat     |            18 | 2020-10-20 |         6 | 2020-11-06 |   17

db<>fiddle here

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement