Tagged Questions
0
votes
1answer
27 views
Sum up query result
I have reservation and postflight table. I have to do a query in the reservation table and look for the data in the postflight table.
$query="select * from reservation where date(fdate) between ...
1
vote
3answers
31 views
Mysql Query SUM dynamic amounts
I need help writing a mysql query to SUM amounts in a column where another columns values may be different depending on the value that it contains. Here is an example of my table.
account type ...
2
votes
3answers
27 views
Select row where SUM becomes greater than X
I have this table
----------------
ID | Duration
----------------
1 10
2 10
3 10
I want to select the id where sum(duration) becomes greater than 15. In ...
0
votes
2answers
29 views
Mysql SUM 0 when not in another table
I have 2 tables:
users:
id | name | club_id |
1 Bob 4
2 Jane 5
3 Alex 4
4 Paul 4
5 Tom 4
points:
user_id | club_id | ...
-1
votes
0answers
16 views
sum alias column to sub query
i have query:
SELECT SUM( nilai.pilih1 ) as kpilih1,
SUM( nilai.pilih2 ),
soal.jwba,
soal.jwbb,
soal.jwbc,
soal.jwbd,
nilai.nilai as nilai,
nilai.catatan as catatan
CASE WHEN nilai.nilai = 4 THEN '1'
...
0
votes
3answers
36 views
How to select records only when the SUM(field) from a separate table > 0 using MAX to identify the most recent 'field'
I have been battling with this query for over a day now. My SQL is not amazing, so that might explain why! Anyway, I'd really appreciate if anyone could clarify what I'm doing wrong here.
CREATE ...
0
votes
3answers
31 views
getting sum of a column in php is not working
i'm trying to get the sum of values in a column inside php but it's not working at all while the query works fine when testing in MySQL here's the code (updated with full code)
...
0
votes
2answers
23 views
How to optimize a MySQL query with SUM(condition)
I have the following MySQL query.
SELECT user_id
SUM(reached = 'Y') AS reached_count,
SUM(reached = 'N') AS not_reached_count
FROM goals
GROUP BY user_id
In table goals I ...
2
votes
1answer
44 views
Mysql SUM function returns returns wrong decimal values
I have the following table with the test data set:
CREATE TABLE `test` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`desc` varchar(20) DEFAULT NULL,
`amount` double DEFAULT NULL,
PRIMARY KEY ...
0
votes
1answer
21 views
Updating Table2 when data found in table1
Forgive me if I make a fool of myself but still fairly new to mysql queries beyond the "basic" kind. Currently I have two tables of data.
Table 1 has data parsed into it using a LOAD INTO and Table 2 ...
0
votes
1answer
20 views
MySQL Indexes for random queries across 1.5M lines table
I have a pretty big mysql table of 1.5 Millions lines.
There are 7 columns identifying the Data with labels (varchar), and 38 Columns containing Numeric (Decimal) Data;
The data are organized that ...
0
votes
2answers
69 views
SQL SUM top 5 values then JOIN results
I want to return the top 5 most voted items, sorted by vote count.
I suppose the best way to do it would be to sum each row's votes_up and votes_down, then take the top 5 of those and join it with the ...
0
votes
1answer
28 views
Mysql merge 1 table into a 2nd and count columns together [closed]
TABLE1
| ID | NAME | MONEY | POINTS |
| 1 | Tim | 200 | 1 |
| 2 | Arne | 500 | 2 |
| 3 | Lies | 600 | 3 |
...
0
votes
2answers
31 views
How to find the sum of two colums with a quantity value
Ok so I am a lil confused how to go about this and seek some help..
I have a mysql db that has a column named quantity and another called price_paid
what I want to do is take and add up the entire ...
1
vote
1answer
19 views
MySQL get sum of fields which rows refer to the two records in another table in between selected rows
Sorry about the vague title, but I'm not quite sure how to name this procedure. So the problem is I have two tables. First one represents train stations and their order:
station_id | station_name
1 ...
1
vote
0answers
42 views
put a where in Sum clause in MYSQL [duplicate]
hi guys im using this MYSQL query to get the top uploader users and the total of thier images views in the current month :
$current_month = date('Y-m-d', strtotime("first day of this month")) . ' ...
1
vote
3answers
41 views
MYSQL SUM() with GROUP BY and LIMIT
I got this table
CREATE TABLE `votes` (
`item_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`vote` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`item_id`,`user_id`),
...
0
votes
2answers
30 views
MySQL: How to get the max of a sum column?
So I have the following query ..
select rooms.id room_id, rooms.cnt, booked_dates.cnt, sum(booked_dates.cnt)
from rooms
LEFT JOIN booked_dates
on rooms.id = booked_dates.rid and
...
0
votes
3answers
34 views
Mysql multiple SUM in one query - novice
I am counting clicks per category of ads. I am curently passing category to function, I have 10 cats, so I am calling this function 10 times to get number of clicks for each category. So i am trying ...
2
votes
1answer
32 views
I want to make a sum from 5 tables that have one column named “UP”
I have 5 tables (bepd , tirpd , elpd , frpd , kopd) with the same column named "Up" , and i want to make the sum of Up from all tables and to show it in a php code . can anyone help me ?
1
vote
2answers
38 views
MySQL: How do I select two fields from table, and total of amount columns in two related tables?
I have three tables:
Project
PurchaseA
PurchaseB
Schema of Project:
id | user_id | title | description | create_date
Schema of PurchaseA:
id | project_id | amount | create_date
Schema of ...
0
votes
1answer
41 views
Average percent value in mysql
I'm trying to divide a value of the count by the value of a subquery and multiplying by 100 to obtain its percent. That code below works...
SELECT data, rota as rt, COUNT(cliente_id) /
(
SELECT ...
0
votes
2answers
45 views
Get max paired users scores with min time sums
I have MySQL tables that look like this
users
user_id | partner_id | name
--------+------------+-----
1 | 2 | aaa
2 | 1 | bbb
3 | 4 | ccc
4 | 3 ...
0
votes
1answer
36 views
Mysql left join and sum
I have three table and i need sum amount separately. Also i will use fields on select or where clause.
SELECT i.*, x.* FROM items AS i
LEFT JOIN
(
SELECT
p.item_id
,SUM(p.amount) AS ...
1
vote
2answers
47 views
Get max user scores with min time sums
I have MySql tables that look like this
scores
game_id | level | score | time
--------+-------+-------+-----
1 | 1 | 1 | 10
1 | 2 | 0 | 10
1 | 3 | 1 | 20
2 ...
0
votes
1answer
38 views
Retrieve rows that their SUM is less than a column in joined table
I'm not sure if this is possible or even smart but here goes:
I have 2 tables, one that is a timesheets table and one that is authorized_services. Here's a basic table structure for each:
TIMESHEETS ...
1
vote
1answer
48 views
calculate price between given dates in multiple ranges
Hi the following code works well when used over two or more ranges but not when the start date and end date are in the same range. When the start date and end date are in the same range the totalprice ...
-1
votes
3answers
53 views
Multiple sum in SQL query
SELECT sum( plot_status = 'OPEN' ) AS OPEN
, sum( plot_status = 'SOLD' ) AS SOLD
FROM `tbl_plot`
GROUP BY `plot_status
This is giving
OPEN SOLD
7 0
0 8
How to make it
OPEN ...
0
votes
3answers
48 views
MySQL query, COUNT and SUM with two joined tables
I need a little help with a MySQL query.
I have two tables one table is a list of backlinks with a is_homepage (bool) flag. The second table is a list of the domains for all of the backlinks, a was ...
3
votes
3answers
100 views
SQL request to find if a period is fully covered
I have a set of periods like:
CREATE TABLE `periods` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`start_at` date DEFAULT NULL,
`end_at` date DEFAULT NULL,
PRIMARY KEY (`id`)
) ...
0
votes
2answers
48 views
how to subtract two table in php mysql
i have two table in mysql
1st is fees and 2nd is expenses
i want fees table subtract in to expenses table
how can i do this please help me to fix this issue thanks
fees table
...
0
votes
2answers
24 views
Summ field value from all records
Hy. How can I setup the query if i would sum all values stored in a field?
Now I have that query:
"SELECT views FROM visitors WHERE visited_user = '123'"
And i have this records stored:
id ...
0
votes
1answer
38 views
Mysql Select 5 rows where sum of one combined column best matches a determined value
First, I have not even started coding this query yet simply because I don't know how to approach it. The scenario is this. In table_name I need to query against column_a selecting (all columns in) the ...
0
votes
2answers
73 views
Mysql GROUP and SUM Optimization
I have 2 tables:
CREATE TABLE IF NOT EXISTS `products` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`categoryId` int(10) unsigned DEFAULT NULL,
`parentId` int(10) unsigned DEFAULT NULL,
...
1
vote
1answer
73 views
PHP MYSQL SUM total but show rows
What I am trying to do is display earning by the page showing the last entries on top.
But it still needs to get the total up to each row.
So page one might look like this:
Date Amount ...
0
votes
3answers
35 views
Add 6 items together to give a total, but by not adding their values together
Bit of a newbie and probabily a very basic question to you guys, but is driving me mad.
I have a mysql table. I have a record which has a record id, and six other fields which contain names of ...
0
votes
2answers
52 views
MYSQL inner join 2 tables and sum()
I am unable to get sum() after joining 2 tables, one is HEADER AND DETAIL. It just gives only 0 result for the below sql statement. Need some help:
My tables:
INVHDR:
Invno, Invdate, ...
1
vote
2answers
54 views
MYSQL LEFT JOIN with GROUP BY
:)
I have 2 queries, and I need to join them, I need to compare the working time of employee depending on activity with total working time of company in the same activity in defined period
First ...
0
votes
1answer
65 views
PHP MYSQL SUM Until a row then stop
Basically I am creating a sort of checking account type query.
Which would be fairly easy except I want it split into pages.
So I have a field that is called amount and it can be a positive or a ...
0
votes
2answers
50 views
Wrong result using sum at MySQL
I have a view with a lot of data. I can got this results using subqueries (data that is ok and optimized):
+------------+
| attendance |
+------------+
| 319 |
| 102 |
| 598 |
| ...
1
vote
3answers
135 views
calculate sum of columns in mysql using boolean php
I have a table named expenses and it includes these columns:
ID, amount_1, amount_2, amount_1_paid, amount_2_paid, total
amount_x_paid is a TINYINT so it's used for checkboxes.
What I want to do ...
0
votes
1answer
66 views
mysql query issue to select total records per day in two tables
i want to get SUM/Total records each day in a month from two tables,when i run my query on single table,it works but then commulative is not working...like this is for first table which is ok.
select ...
-1
votes
2answers
126 views
How to add numbers in mysql database rows?
I have a list of price numbers in my MySql datbase rows. I am new to database and so far I already tried SELECT, INSERT, DELETE and UPDATE command in MySql, my program is doing well until I ...
1
vote
1answer
64 views
MYSQL - triple Inner Join and SUM
Here my tables:
invites
id | inviteFromID | inviteToID | timestamp | joined
---------------------------------------------------
1 | 1 | 234567890 | 2013-02-02| 1
2 | 1 | ...
0
votes
1answer
17 views
MYSQL - SUM points from three tables
I have the following SQL statement (so far):
SELECT p.facebookID,p.points,pi.facebookID,pi.points, SUM(pi.points) FROM player AS p
INNER JOIN invites AS i ON p.id = i.inviteFromID
INNER JOIN ...
1
vote
3answers
43 views
mysql resturn value as min or plus from sum
For my vote system I have two possible values to vote for. 1 or -1, this exactly value is saved in the database.
Right now I select/count the values separated like field_up and field_down. I would ...
0
votes
2answers
30 views
Order by sum(value) sql
I am trying to get a list of blog_id and the sum of donations on that blog id from a table called donations. And I want to order it by the sum of donations. Basically I want to produce a list of blogs ...
1
vote
1answer
76 views
Load text files into database merging duplicates
I have a MySQL table and large text files with values separated by tabs. This file may contain duplicates. This is an example:
foo \t 5
bar \t 42
etc \t 22
bar \t 50
oth \t 12
Also, each file may ...
0
votes
1answer
53 views
mysql count 2 field
I have 1 table and I want to count/sum 2 column which has date greater than the other
as example
id | comment | articleid | dateadd | dateupdate |
1 bla 1 2011-01-01 ...
0
votes
1answer
40 views
Sum in another table plus interval of time
I tried to make a sql but not know hot make it work.
I got this MySQL DB:
THREAD:
*id
-date
-title
-text
-user_id
RATINGS:
*id
-thread_id
-user_id
I need to COUNT the positive rating of a ...


