Viewing 9 posts - 1 through 10 (of 10 total)
Correct sir, but how to calculate that multiplier?
I'm interested in finding out what the average responses / applications, etc are based upon the mailer volume and mailer type fields. ...
August 20, 2015 at 7:53 am
Let's assume that's not an option, and the forecasting I'm looking for isn't anything overly sophisticated.
How would one approach this?
Based upon the attributes in 2 fields (volume of mail and...
August 20, 2015 at 7:05 am
It is. I apologize, for some reason, I figured this forum is able to tackle anything and any version of SQL
July 29, 2015 at 12:35 pm
Thanks for the input guys..
I tried using the second solution with month(n.campaign_date)
..
WHERE
day(campaign_date) between 1 and 23
And I'm getting the following error.
ERROR: 42883: function day(timestamp without time zone) does not...
July 29, 2015 at 11:46 am
It's pretty simple, instead of
SELECT
DATE_TRUNC('month', n.campaign_date) <--- i want the date trunc to reflect ONLY the 1st - 23rd of every month. I then want to get...
July 29, 2015 at 10:41 am
DROP TABLE mytable;
CREATE TABLE mytable(
primary_attribute_value VARCHAR(33) NOT NULL PRIMARY KEY
, date VARCHAR(27) NOT NULL
, emails INTEGER(3) NOT NULL
, emails_delivered INTEGER(3) NOT NULL
, delivery_rate NUMERIC(6,4) NOT NULL
, opens INTEGER(2)...
June 29, 2015 at 12:41 pm
I converted to CSV and I threw in a mock example since I'm still unclear how to write the syntax.
DROP TABLE mytable;
CREATE TABLE mytable(
FIELD1 VARCHAR(33) NOT NULL PRIMARY...
June 29, 2015 at 12:10 pm
The action this whole query revolves around is the activity date (a.activity_date). a.activity_date is the date of an email send.
I'm trying to determine the dollar amount of activity triggered...
June 29, 2015 at 11:06 am
Hi , the reason I'm joining twice is because I need to account that opportunities can come from two different joins.
I just don't know how to write the syntax properly...the...
June 29, 2015 at 10:36 am
Viewing 9 posts - 1 through 10 (of 10 total)