MYSQL Cumulative Totals with SUM and Subquery Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Can I concatenate multiple MySQL rows into one field?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsMySql conditional order byInsert into a MySQL table or update if existsHow to reset AUTO_INCREMENT in MySQL?MySQL INNER JOIN of 3 tables with count and totalsHow to import an SQL file using the command line in MySQL?SQL Query with 3 Tables using SUM not workingSQL query calculate and display sum data per each month of the year
When speaking, how do you change your mind mid-sentence?
Construct a nonabelian group of order 44
Does the Pact of the Blade warlock feature allow me to customize the properties of the pact weapon I create?
Short story about an alien named Ushtu(?) coming from a future Earth, when ours was destroyed by a nuclear explosion
How can I introduce the names of fantasy creatures to the reader?
What helicopter has the most rotor blades?
Why aren't road bike wheels tiny?
What is the definining line between a helicopter and a drone a person can ride in?
What is the ongoing value of the Kanban board to the developers as opposed to management
Knights and Knaves question
Why do C and C++ allow the expression (int) + 4*5?
Why are two-digit numbers in Jonathan Swift's "Gulliver's Travels" (1726) written in "German style"?
Is the Mordenkainen's Sword spell underpowered?
Pointing to problems without suggesting solutions
What's the connection between Mr. Nancy and fried chicken?
lm and glm function in R
Lights are flickering on and off after accidentally bumping into light switch
Is there a verb for listening stealthily?
Married in secret, can marital status in passport be changed at a later date?
Who's this lady in the war room?
Is "ein Herz wie das meine" an antiquated or colloquial use of the possesive pronoun?
Has a Nobel Peace laureate ever been accused of war crimes?
Like totally amazing interchangeable sister outfit accessory swapping or whatever
How was Lagrange appointed professor of mathematics so early?
MYSQL Cumulative Totals with SUM and Subquery
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!Can I concatenate multiple MySQL rows into one field?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsMySql conditional order byInsert into a MySQL table or update if existsHow to reset AUTO_INCREMENT in MySQL?MySQL INNER JOIN of 3 tables with count and totalsHow to import an SQL file using the command line in MySQL?SQL Query with 3 Tables using SUM not workingSQL query calculate and display sum data per each month of the year
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have the below table:
CREATE TABLE `_loans` (
`loan_id` int(11) NOT NULL,
`price` float(7,2) NOT NULL,
`term` int(11) NOT NULL,
`app_date` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
INSERT INTO `_loans` (`loan_id`, `price`, `term`, `app_date`) VALUES
(1, 299.00, 24, '2019-01-23'),
(2, 774.00, 24, '2019-01-24'),
(3, 817.80, 24, '2019-01-24'),
(4, 279.99, 24, '2019-01-28'),
(5, 463.99, 24, '2019-01-28'),
(6, 0.00, 24, '2019-01-28'),
(7, 357.00, 24, '2019-02-02'),
(8, 386.98, 24, '2019-02-04'),
(9, 846.00, 24, '2019-02-04'),
(10, 713.99, 24, '2019-02-06'),
(11, 0.00, 24, '2019-02-07'),
(12, 579.00, 24, '2019-02-11'),
(13, 179.00, 24, '2019-02-13'),
(14, 0.00, 24, '2019-02-19'),
(15, 259.00, 24, '2019-02-21'),
(16, 249.99, 24, '2019-02-26'),
(17, 319.00, 24, '2019-03-02'),
(18, 1108.99, 24, '2019-03-05'),
(19, 319.00, 24, '2019-03-05'),
(20, 199.97, 24, '2019-03-06');
ALTER TABLE `_loans`
ADD PRIMARY KEY (`loan_id`),
ADD KEY `app_date` (`app_date`);
And the below query, which gives a monthly summary of the table data:
SELECT
MONTHNAME(w.app_date) month,
YEAR(w.app_date) year,
COUNT(*) contracts,
SUM(w.total_price) totals,
@running_total := @running_total + SUM(w.total_price) running_totals
FROM (
SELECT
app_date,
SUM(price * term) total_price
FROM _loans l
GROUP BY l.loan_id
) w
JOIN (SELECT @running_total := 0) r
GROUP BY YEAR(w.app_date), MONTH(w.app_date)
ORDER BY YEAR(w.app_date), MONTH(w.app_date) ASC
I need a running total of the values from the 'totals' column. Everything works well except the cumulative total, which is not accumulating.
month | year | contracts | totals | running_totals
------------------------------------------------------------------
January | 2019 | 6 | 63234.72 | 63234.71923828125
February | 2019 | 10 | 85703.04 | 85703.04016113281
March | 2019 | 4 | 46727.04 | 46727.039794921875
mysql sql
add a comment |
I have the below table:
CREATE TABLE `_loans` (
`loan_id` int(11) NOT NULL,
`price` float(7,2) NOT NULL,
`term` int(11) NOT NULL,
`app_date` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
INSERT INTO `_loans` (`loan_id`, `price`, `term`, `app_date`) VALUES
(1, 299.00, 24, '2019-01-23'),
(2, 774.00, 24, '2019-01-24'),
(3, 817.80, 24, '2019-01-24'),
(4, 279.99, 24, '2019-01-28'),
(5, 463.99, 24, '2019-01-28'),
(6, 0.00, 24, '2019-01-28'),
(7, 357.00, 24, '2019-02-02'),
(8, 386.98, 24, '2019-02-04'),
(9, 846.00, 24, '2019-02-04'),
(10, 713.99, 24, '2019-02-06'),
(11, 0.00, 24, '2019-02-07'),
(12, 579.00, 24, '2019-02-11'),
(13, 179.00, 24, '2019-02-13'),
(14, 0.00, 24, '2019-02-19'),
(15, 259.00, 24, '2019-02-21'),
(16, 249.99, 24, '2019-02-26'),
(17, 319.00, 24, '2019-03-02'),
(18, 1108.99, 24, '2019-03-05'),
(19, 319.00, 24, '2019-03-05'),
(20, 199.97, 24, '2019-03-06');
ALTER TABLE `_loans`
ADD PRIMARY KEY (`loan_id`),
ADD KEY `app_date` (`app_date`);
And the below query, which gives a monthly summary of the table data:
SELECT
MONTHNAME(w.app_date) month,
YEAR(w.app_date) year,
COUNT(*) contracts,
SUM(w.total_price) totals,
@running_total := @running_total + SUM(w.total_price) running_totals
FROM (
SELECT
app_date,
SUM(price * term) total_price
FROM _loans l
GROUP BY l.loan_id
) w
JOIN (SELECT @running_total := 0) r
GROUP BY YEAR(w.app_date), MONTH(w.app_date)
ORDER BY YEAR(w.app_date), MONTH(w.app_date) ASC
I need a running total of the values from the 'totals' column. Everything works well except the cumulative total, which is not accumulating.
month | year | contracts | totals | running_totals
------------------------------------------------------------------
January | 2019 | 6 | 63234.72 | 63234.71923828125
February | 2019 | 10 | 85703.04 | 85703.04016113281
March | 2019 | 4 | 46727.04 | 46727.039794921875
mysql sql
Note that price is often DECIMAL
– Strawberry
Mar 9 at 9:35
add a comment |
I have the below table:
CREATE TABLE `_loans` (
`loan_id` int(11) NOT NULL,
`price` float(7,2) NOT NULL,
`term` int(11) NOT NULL,
`app_date` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
INSERT INTO `_loans` (`loan_id`, `price`, `term`, `app_date`) VALUES
(1, 299.00, 24, '2019-01-23'),
(2, 774.00, 24, '2019-01-24'),
(3, 817.80, 24, '2019-01-24'),
(4, 279.99, 24, '2019-01-28'),
(5, 463.99, 24, '2019-01-28'),
(6, 0.00, 24, '2019-01-28'),
(7, 357.00, 24, '2019-02-02'),
(8, 386.98, 24, '2019-02-04'),
(9, 846.00, 24, '2019-02-04'),
(10, 713.99, 24, '2019-02-06'),
(11, 0.00, 24, '2019-02-07'),
(12, 579.00, 24, '2019-02-11'),
(13, 179.00, 24, '2019-02-13'),
(14, 0.00, 24, '2019-02-19'),
(15, 259.00, 24, '2019-02-21'),
(16, 249.99, 24, '2019-02-26'),
(17, 319.00, 24, '2019-03-02'),
(18, 1108.99, 24, '2019-03-05'),
(19, 319.00, 24, '2019-03-05'),
(20, 199.97, 24, '2019-03-06');
ALTER TABLE `_loans`
ADD PRIMARY KEY (`loan_id`),
ADD KEY `app_date` (`app_date`);
And the below query, which gives a monthly summary of the table data:
SELECT
MONTHNAME(w.app_date) month,
YEAR(w.app_date) year,
COUNT(*) contracts,
SUM(w.total_price) totals,
@running_total := @running_total + SUM(w.total_price) running_totals
FROM (
SELECT
app_date,
SUM(price * term) total_price
FROM _loans l
GROUP BY l.loan_id
) w
JOIN (SELECT @running_total := 0) r
GROUP BY YEAR(w.app_date), MONTH(w.app_date)
ORDER BY YEAR(w.app_date), MONTH(w.app_date) ASC
I need a running total of the values from the 'totals' column. Everything works well except the cumulative total, which is not accumulating.
month | year | contracts | totals | running_totals
------------------------------------------------------------------
January | 2019 | 6 | 63234.72 | 63234.71923828125
February | 2019 | 10 | 85703.04 | 85703.04016113281
March | 2019 | 4 | 46727.04 | 46727.039794921875
mysql sql
I have the below table:
CREATE TABLE `_loans` (
`loan_id` int(11) NOT NULL,
`price` float(7,2) NOT NULL,
`term` int(11) NOT NULL,
`app_date` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
INSERT INTO `_loans` (`loan_id`, `price`, `term`, `app_date`) VALUES
(1, 299.00, 24, '2019-01-23'),
(2, 774.00, 24, '2019-01-24'),
(3, 817.80, 24, '2019-01-24'),
(4, 279.99, 24, '2019-01-28'),
(5, 463.99, 24, '2019-01-28'),
(6, 0.00, 24, '2019-01-28'),
(7, 357.00, 24, '2019-02-02'),
(8, 386.98, 24, '2019-02-04'),
(9, 846.00, 24, '2019-02-04'),
(10, 713.99, 24, '2019-02-06'),
(11, 0.00, 24, '2019-02-07'),
(12, 579.00, 24, '2019-02-11'),
(13, 179.00, 24, '2019-02-13'),
(14, 0.00, 24, '2019-02-19'),
(15, 259.00, 24, '2019-02-21'),
(16, 249.99, 24, '2019-02-26'),
(17, 319.00, 24, '2019-03-02'),
(18, 1108.99, 24, '2019-03-05'),
(19, 319.00, 24, '2019-03-05'),
(20, 199.97, 24, '2019-03-06');
ALTER TABLE `_loans`
ADD PRIMARY KEY (`loan_id`),
ADD KEY `app_date` (`app_date`);
And the below query, which gives a monthly summary of the table data:
SELECT
MONTHNAME(w.app_date) month,
YEAR(w.app_date) year,
COUNT(*) contracts,
SUM(w.total_price) totals,
@running_total := @running_total + SUM(w.total_price) running_totals
FROM (
SELECT
app_date,
SUM(price * term) total_price
FROM _loans l
GROUP BY l.loan_id
) w
JOIN (SELECT @running_total := 0) r
GROUP BY YEAR(w.app_date), MONTH(w.app_date)
ORDER BY YEAR(w.app_date), MONTH(w.app_date) ASC
I need a running total of the values from the 'totals' column. Everything works well except the cumulative total, which is not accumulating.
month | year | contracts | totals | running_totals
------------------------------------------------------------------
January | 2019 | 6 | 63234.72 | 63234.71923828125
February | 2019 | 10 | 85703.04 | 85703.04016113281
March | 2019 | 4 | 46727.04 | 46727.039794921875
mysql sql
mysql sql
asked Mar 9 at 2:50
ratherBeKitingratherBeKiting
155112
155112
Note that price is often DECIMAL
– Strawberry
Mar 9 at 9:35
add a comment |
Note that price is often DECIMAL
– Strawberry
Mar 9 at 9:35
Note that price is often DECIMAL
– Strawberry
Mar 9 at 9:35
Note that price is often DECIMAL
– Strawberry
Mar 9 at 9:35
add a comment |
2 Answers
2
active
oldest
votes
This isn't working because of the GROUP
ing. You need to nest the GROUP
ing as a subquery and compute the running total from that:
SELECT monthname as month, year, contracts, totals,
@running_total := @running_total + totals AS running_totals
FROM (SELECT
MONTHNAME(w.app_date) monthname,
MONTH(w.app_date) monthnum,
YEAR(w.app_date) year,
COUNT(*) contracts,
SUM(w.total_price) totals
FROM (SELECT
app_date,
SUM(price * term) total_price
FROM _loans l
GROUP BY l.loan_id
) w
GROUP BY year, monthnum, monthname
) t
JOIN (SELECT @running_total := 0) r
ORDER BY year, monthnum ASC
Output:
month year contracts totals running_totals
January 2019 6 63234.72 63234.71923828125
February 2019 10 85703.04 148937.75939941406
March 2019 4 46727.04 195664.79919433594
Demo on dbfiddle
add a comment |
Your query is overly complicated. The subquery is not necessary for the aggregation. However, it is necessary for the use of variables:
SELECT month, year, total_price,
(@running_total := @running_total + total_price) as running_totals
FROM (SELECT MONTHNAME(l.app_date) as month,
YEAR(l.app_date) as year,
MONTH(l.app_date) as mon,
COUNT(DISTINCT l.loan_id) as contracts,
SUM(l.price * l.term) total_price
FROM _loans l
GROUP BY l.loan_id, YEAR(w.app_date), MONTH(w.app_date)
ORDER BY l.loan_id, YEAR(w.app_date), MONTH(w.app_date)
) l CROSS JOIN
(SELECT @running_total := 0) params
ORDER BY year, mon ASC
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55073546%2fmysql-cumulative-totals-with-sum-and-subquery%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
This isn't working because of the GROUP
ing. You need to nest the GROUP
ing as a subquery and compute the running total from that:
SELECT monthname as month, year, contracts, totals,
@running_total := @running_total + totals AS running_totals
FROM (SELECT
MONTHNAME(w.app_date) monthname,
MONTH(w.app_date) monthnum,
YEAR(w.app_date) year,
COUNT(*) contracts,
SUM(w.total_price) totals
FROM (SELECT
app_date,
SUM(price * term) total_price
FROM _loans l
GROUP BY l.loan_id
) w
GROUP BY year, monthnum, monthname
) t
JOIN (SELECT @running_total := 0) r
ORDER BY year, monthnum ASC
Output:
month year contracts totals running_totals
January 2019 6 63234.72 63234.71923828125
February 2019 10 85703.04 148937.75939941406
March 2019 4 46727.04 195664.79919433594
Demo on dbfiddle
add a comment |
This isn't working because of the GROUP
ing. You need to nest the GROUP
ing as a subquery and compute the running total from that:
SELECT monthname as month, year, contracts, totals,
@running_total := @running_total + totals AS running_totals
FROM (SELECT
MONTHNAME(w.app_date) monthname,
MONTH(w.app_date) monthnum,
YEAR(w.app_date) year,
COUNT(*) contracts,
SUM(w.total_price) totals
FROM (SELECT
app_date,
SUM(price * term) total_price
FROM _loans l
GROUP BY l.loan_id
) w
GROUP BY year, monthnum, monthname
) t
JOIN (SELECT @running_total := 0) r
ORDER BY year, monthnum ASC
Output:
month year contracts totals running_totals
January 2019 6 63234.72 63234.71923828125
February 2019 10 85703.04 148937.75939941406
March 2019 4 46727.04 195664.79919433594
Demo on dbfiddle
add a comment |
This isn't working because of the GROUP
ing. You need to nest the GROUP
ing as a subquery and compute the running total from that:
SELECT monthname as month, year, contracts, totals,
@running_total := @running_total + totals AS running_totals
FROM (SELECT
MONTHNAME(w.app_date) monthname,
MONTH(w.app_date) monthnum,
YEAR(w.app_date) year,
COUNT(*) contracts,
SUM(w.total_price) totals
FROM (SELECT
app_date,
SUM(price * term) total_price
FROM _loans l
GROUP BY l.loan_id
) w
GROUP BY year, monthnum, monthname
) t
JOIN (SELECT @running_total := 0) r
ORDER BY year, monthnum ASC
Output:
month year contracts totals running_totals
January 2019 6 63234.72 63234.71923828125
February 2019 10 85703.04 148937.75939941406
March 2019 4 46727.04 195664.79919433594
Demo on dbfiddle
This isn't working because of the GROUP
ing. You need to nest the GROUP
ing as a subquery and compute the running total from that:
SELECT monthname as month, year, contracts, totals,
@running_total := @running_total + totals AS running_totals
FROM (SELECT
MONTHNAME(w.app_date) monthname,
MONTH(w.app_date) monthnum,
YEAR(w.app_date) year,
COUNT(*) contracts,
SUM(w.total_price) totals
FROM (SELECT
app_date,
SUM(price * term) total_price
FROM _loans l
GROUP BY l.loan_id
) w
GROUP BY year, monthnum, monthname
) t
JOIN (SELECT @running_total := 0) r
ORDER BY year, monthnum ASC
Output:
month year contracts totals running_totals
January 2019 6 63234.72 63234.71923828125
February 2019 10 85703.04 148937.75939941406
March 2019 4 46727.04 195664.79919433594
Demo on dbfiddle
answered Mar 9 at 3:06
NickNick
41.7k142444
41.7k142444
add a comment |
add a comment |
Your query is overly complicated. The subquery is not necessary for the aggregation. However, it is necessary for the use of variables:
SELECT month, year, total_price,
(@running_total := @running_total + total_price) as running_totals
FROM (SELECT MONTHNAME(l.app_date) as month,
YEAR(l.app_date) as year,
MONTH(l.app_date) as mon,
COUNT(DISTINCT l.loan_id) as contracts,
SUM(l.price * l.term) total_price
FROM _loans l
GROUP BY l.loan_id, YEAR(w.app_date), MONTH(w.app_date)
ORDER BY l.loan_id, YEAR(w.app_date), MONTH(w.app_date)
) l CROSS JOIN
(SELECT @running_total := 0) params
ORDER BY year, mon ASC
add a comment |
Your query is overly complicated. The subquery is not necessary for the aggregation. However, it is necessary for the use of variables:
SELECT month, year, total_price,
(@running_total := @running_total + total_price) as running_totals
FROM (SELECT MONTHNAME(l.app_date) as month,
YEAR(l.app_date) as year,
MONTH(l.app_date) as mon,
COUNT(DISTINCT l.loan_id) as contracts,
SUM(l.price * l.term) total_price
FROM _loans l
GROUP BY l.loan_id, YEAR(w.app_date), MONTH(w.app_date)
ORDER BY l.loan_id, YEAR(w.app_date), MONTH(w.app_date)
) l CROSS JOIN
(SELECT @running_total := 0) params
ORDER BY year, mon ASC
add a comment |
Your query is overly complicated. The subquery is not necessary for the aggregation. However, it is necessary for the use of variables:
SELECT month, year, total_price,
(@running_total := @running_total + total_price) as running_totals
FROM (SELECT MONTHNAME(l.app_date) as month,
YEAR(l.app_date) as year,
MONTH(l.app_date) as mon,
COUNT(DISTINCT l.loan_id) as contracts,
SUM(l.price * l.term) total_price
FROM _loans l
GROUP BY l.loan_id, YEAR(w.app_date), MONTH(w.app_date)
ORDER BY l.loan_id, YEAR(w.app_date), MONTH(w.app_date)
) l CROSS JOIN
(SELECT @running_total := 0) params
ORDER BY year, mon ASC
Your query is overly complicated. The subquery is not necessary for the aggregation. However, it is necessary for the use of variables:
SELECT month, year, total_price,
(@running_total := @running_total + total_price) as running_totals
FROM (SELECT MONTHNAME(l.app_date) as month,
YEAR(l.app_date) as year,
MONTH(l.app_date) as mon,
COUNT(DISTINCT l.loan_id) as contracts,
SUM(l.price * l.term) total_price
FROM _loans l
GROUP BY l.loan_id, YEAR(w.app_date), MONTH(w.app_date)
ORDER BY l.loan_id, YEAR(w.app_date), MONTH(w.app_date)
) l CROSS JOIN
(SELECT @running_total := 0) params
ORDER BY year, mon ASC
answered Mar 9 at 3:56
Gordon LinoffGordon Linoff
801k37321426
801k37321426
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55073546%2fmysql-cumulative-totals-with-sum-and-subquery%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Note that price is often DECIMAL
– Strawberry
Mar 9 at 9:35