0
votes
1answer
13 views
LINQ: query to sum on grouped field
I've a list of tasks. Ie I've struct like
struct Task
{
public DateTime Completed { get; set; }
public string TaskKind { get; set; }
public float Effort { get; set; }
…
0
votes
1answer
11 views
Linq - 2 tables - Sum
Hi, i have 2 tables:
Asiento
********
Id_Asiento integer key
Fecha date
It_Asiento
**********
Id_Asiento integer Forenkey
Importe float
I wan to do This SQL Query with Linq
se …
0
votes
3answers
33 views
How to do: sum columnB where columnA is XYZ - in Excel?
Hi
I have a bunch of columns and some columns which are values I need to add.
Lets say I want to sum columnB (which could be $) where column A is banana, how do I do that?
Thing …
1
vote
4answers
49 views
MAX on columns generated by SUM and GROUP BY
I'm trying to get the MAX on a column which is generated dynamically using the SUM statement. The SUM statement is used together with the 'GROUP by' syntax.
This is the original q …
1
vote
11answers
157 views
SELECT command to calculate percentage
I'm trying to get the percentage of each video I have in my database based on its view count against all other videos.
I'm then trying to display all the videos from highest view …
0
votes
2answers
52 views
insert a value into an integer column without updating it, but adding it’s contents.
hello i have:
ActiveRecord::Base.connection.execute "UPDATE ventas SET costo_de_compra = #{@nuevo_costo} WHERE id = #{@vid};"
but this updates that column value every time it's …
0
votes
1answer
48 views
Sum values of a loop
hi i have this :
<% for item in @ventas_ocurridas_en_este_periodo do %>
<% @pid = item.producto_id %>
<br/>
Producto: <%= Producto.find_by_id(@pid) %>< …
0
votes
3answers
39 views
Problem with Crystal Reports
Hi
I have a problem with Sum fields in Crystal Reports, under VS 2003.
I am using VS 2003 and Crystal Reports to generate a report with data retrieved from a SQL Server 2000 datab …
-1
votes
5answers
148 views
Sum and Division example (Python)
>>> sum((1, 2, 3, 4, 5, 6, 7))
28
>>> 28/7
4.0
>>> sum((1,2,3,4,5,6,7,8,9,10,11,12,13,14))
105
>>> 105/7
15.0
>>>
How do I automate t …
0
votes
1answer
41 views
RoR: How to Change fields on Join statement generated by Active Record’s sum function.
I'm doing a sum using the Sum function provided by RubyOnRails' Active Record as follows:
s=DatosMateria.sum('inscritos',:conditions=> "datos_materia.ano=2005 AND materias.codi …
3
votes
7answers
389 views
Subset summing
I have a problem related to the subset sum problem and am wondering if the differences make it easier, i.e. solvable in a reasonable amount of time.
Given a value V, a set size L, …
1
vote
2answers
126 views
Python: next() function
I'm learning Python from a book, and I came across this example:
M = [[1,2,3],
[4,5,6],
[7,8,9]]
G = (sum(row) for row in M) # create a generator of row sums
next(G) # …
1
vote
2answers
87 views
how to calculate sum of hours?
My tables are as follows
workers:
id integer
...
days:
id INTEGER
event_date DATE
worker_id INTEGER
and
hours:
id INTEGER
hr_star …
0
votes
1answer
35 views
Simple math question with LinQ, simple Join query, Nulls, etc.
I have 2 tables
1. Client
2. Operations
Operations can result in: Credits or Debits ('C' or 'D' in a char field) along with date and ammount fields.
I must calculat …
0
votes
1answer
93 views
Calculating percentages with SQL
I'm trying to create an SQL query to work out the percentage of rows given its number of play counts.
My DB currently has 800 rows of content,
All content has been played a total …
