Tagged Questions

2
votes
1answer
228 views

MySQL - subtracting certain rows of a table and presenting the results alongside other rows

I have been struggling with getting this query right for hours now. I have a huge amount of data and I want to show just the departments with IDs 10,15,18 and 25. From here, I want to subtract the ...
2
votes
2answers
1k views

Mysql auto fill field based on value of two other fields?

I know its possible to autoincrement values, but i was wondering if its possible to fill a field based on the value of two other fields. I have a table with the fields: CREATE TABLE pligg_links ( ...
2
votes
3answers
594 views

Subtraction of MySQL times inconsistent on different machines

I have a MySQL query structured as follows: SELECT time(c.start_time), time(c.end_time), time(c.end_time) - time(c.start_time) as 'opening_hours' FROM my_shop c; The data in start ...
0
votes
2answers
54 views

Subtraction with php and mysql

I am developing a joomla extension and in default.php file i have this code: foreach($this->subv as $subv) { $giorni = ((int)$subv->data_fine - (int)$subv->data_inizio); $ore = ...
0
votes
1answer
164 views

How to calculate elapsed time in terms of minutes in MySQL

There is a time stamp column/field in a table, and the format is like 2009-12-05 10:35:28, Now I want to get the time in terms of minutes(How many minutes have elapsed) elapsed from then on, how to ...
0
votes
7answers
617 views

How to get duration in terms of minutes by subtracting a previous time stamp from the present time in PHP?

How to get duration in terms of minutes by subtracting a previous time stamp from the present time in PHP? The format of time stamp is like 2009-12-05 10:35:28 I want to calculate how many ...