Calculating While Querying

Calculating While Querying

Question:
I have two fields in my query:

SELECT minutes, cost FROM SomeTable

However, I would like to calculate the cost/minutes for each row selected. So I tried the following:

 SELECT minutes, cost, IIF(minutes>0, cost/minutes,0) as avg_cost FROM SomeTable

My problem is that the database that I’ve been retrieving from changed types; namely, the fields used to be in numeric type, but now they are in strings. How can I convert the columns in order to calculate the average?

Answer:
I don’t know what RDBMS you are in, but in SQL Server there is a CONVERT function that takes the type to convert from and a destination format.

There are some conversions that are not allowed, and I think the one you mention is one of them. (How do I know what number to use for the time part of a date string?)

You may find that you have to parse the parts of the thing you want to convert into separate fields in order to observe special data type rules (like time math).

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes