Skip to content
Advertisement

How to convert time given as string into integer mins

What I’m trying to ask is that I’ve a table Duration. It has only one field elapsed and it is VARCHAR. The table is this:

I want this table:

total should be integer or number. I’ve to perform some arithmetic on it later.

Here’s what I tried:

Please help me.

Note: I need MYSQL query not MSSQL.

Advertisement

Answer

If you only have min and hour, you can use:

This extracts the number before “hour” if any, multiplies by 60 and adds in the number before “minute”, if any.

Here is a db<>fiddle.

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