- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的工作职责之一是负责挖掘和营销大型时事通讯订阅数据库。我的每一份时事通讯都有四个栏目(newsletter_status、newsletter_datejoined、newsletter_dateunsub 和 newsletter_unsubmid)。
除了这些专栏,我还有一个master unsub专栏,我们的客户服务部门。可以更新以适应希望从我们所有邮件中删除的愤怒订阅者,如果发生硬退回(或一定数量的软退回),另一个列会更新,称为 emailaddress_status。
当我为一个列表提取当前有效订阅者的计数时,我使用以下语法:
select count (*) from subscriber_db
WHERE (emailaddress_status = 'VALID' OR emailaddress_status IS NULL)
AND newsletter_status = 'Y'
and unsub = 'N' and newsletter_datejoined >= '2013-01-01';
我想要的是一个查询,它查找具有 %_status 的所有列,上述条件按当前计数大小排序。
我希望它看起来像这样:
等等
我在网上搜索了几个月寻找类似的东西,但除了在终端中运行它们并导出结果外,我无法在一次查询中成功获得所有结果。
我正在运行 PostgreSQL 9.2.3。
一个合适的测试用例应该是每个聚合总数与我在运行单个查询时获得的计数相匹配。
这是我混淆的 table definition对于顺序放置,column_type、char_limit 和 is_nullable。
最佳答案
您的架构绝对令人恐惧:
24 ***_status text YES
25 ***_status text YES
26 ***_status text YES
27 ***_status text YES
28 ***_status text YES
29 ***_status text YES
我假设屏蔽的 ***
类似于出版物/新闻通讯/等的名称。
您需要阅读关于 data normalization 的内容或者你会遇到一个不断增长的问题,直到你点击 PostgreSQL's row-size limit .
由于每个感兴趣的项目都在不同的列中,因此使用现有模式解决此问题的唯一方法是使用 PL/PgSQL 的 EXECUTE format(...) USING ...
编写动态 SQL .您可能认为这只是一个临时选项,但这有点像使用打桩机将方桩塞入圆孔,因为锤子不够大。
SQL 中没有列名通配符,如 *_status
或 %_status
。列是行的固定组成部分,具有不同的类型和含义。每当您发现自己希望得到这样的东西时,就表明您的设计需要重新考虑。
我不打算写一个示例,因为 (a) 这是一家电子邮件营销公司,并且 (b) 如果不进行大量手动重写,“混淆”模式完全无法用于任何类型的测试。 (将来,请为您的虚拟数据提供 CREATE TABLE
和 INSERT
语句,或者更好的是 http://sqlfiddle.com/ )。您会在 PL/PgSQL 中找到许多动态 SQL 的示例 - 以及有关如何通过正确使用 format
避免由此产生的 SQL 注入(inject)风险的警告 - 快速搜索 Stack Overflow。我过去写过很多。
请,为了您和其他需要在该系统上工作的人的理智,normalize your schema .
您可以 create a view在规范化表上显示旧结构,让您有时间调整您的应用程序。通过更多的工作,您甚至可以定义一个 DO INSTEAD
View 触发器(较新的 Pg 版本)或 RULE
(较旧的 Pg 版本)以使 View 可更新和可插入,因此您的应用程序甚至无法判断是否发生了任何变化 - 尽管这是以性能成本为代价的,因此最好尽可能调整应用程序。
从这样的事情开始:
CREATE TABLE subscriber (
id serial primary key,
email_address text not null,
-- please read http://www.kalzumeus.com/2010/06/17/falsehoods-programmers-believe-about-names/
-- for why I merged "fname" and "lname" into one field:
realname text,
-- Store birth month/year as a "date" with a "CHECK" constraint forcing it to be the 1st day
-- of the month. Much easier to work with.
birthmonth date,
CONSTRAINT birthmonth_must_be_day_1 CHECK ( extract(day from birthmonth) = 1),
postcode text,
-- Congratulations! You made "gender" a "text" field to start with, you avoided
-- one of the most common mistakes in schema design, the boolean/binary gender
-- field!
gender text,
-- What's MSO? Should have a COMMENT ON...
mso text,
source text,
-- Maintain these with a trigger. If you want modified to update when any child record
-- changes you can do that with triggers on subscription and reducedfreq_subscription.
created_on timestamp not null default current_timestamp,
last_modified timestamp not null,
-- Use the native PostgreSQL UUID type, after running CREATE EXTENSION "uuid-ossp";
uuid uuid not null,
uuid2 uuid not null,
brand text,
-- etc etc
);
CREATE TABLE reducedfreq_subscription (
id serial primary key,
subscriber_id integer not null references subscriber(id),
-- Suspect this was just a boolean stored as text in your schema, in which case
-- delete it.
reducedfreqsub text,
reducedfreqpref text,
-- plural, might be a comma list? Should be in sub-table ("join table")
-- if so, but without sample data can only guess.
reducedfreqtopics text,
-- date can be NOT NULL since the row won't exist unless they joined
reducedfreq_datejoined date not null,
reducedfreq_dateunsub date
);
CREATE TABLE subscription (
id serial primary key,
subscriber_id integer not null references subscriber(id),
sub_name text not null,
status text not null,
datejoined date not null,
dateunsub date
);
CREATE TABLE subscriber_activity (
last_click timestamptz,
last_open timestamptz,
last_hardbounce timestamptz,
last_softbounce timestamptz,
last_successful_mailing timestamptz
);
关于sql - 同一查询中的多个通配符计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17535697/
我的网址看起来像 '/api/comments/languages/124/component/segment_translation/2' 我知道 url 的哪些部分是静态的;并且是动态的 - 并且
如何使用通配符查找和替换主域之后的所有字符(包括“/”字符)? 例如,我有以下 4 行: intersport-schaeftlmaier.de/ weymouthhondapowersports.c
我有 3 个控件,其 ID 为 control_1、control_2、control_3。 我想隐藏这些控件。 目前我正在使用这个: $('#control_1').hide(); $('#cont
我有一个旧歌曲数据库,我想将其转移到新数据库。我的旧数据库看起来像这样,多个值被填充在一个用逗号分隔的字段中 SONG id | title | artist |
首先,我知道downloads表没有标准化。 我有这两个表: downloads map | author 1 | Nikola 2 | Nikola George 和 mappers mapper_
通配符可用于替代字符串中的任何其他字符。 SQL 通配符 在 SQL 中,通配符与 SQL LIKE 操作符一起使用。 SQL 通配符用于搜索表中的数据。 在 SQL 中,可使用以下通配符:
我在 shell 脚本中有一行看起来像这样: java -jar "$dir/"*.jar ,因为我只想执行该文件夹中恰好命名的 jar 文件。但这并不像我预期的那样有效。我收到错误消息: Error
我想在 Active Directory 用户的所有属性中搜索特定电话号码/分机号。 我可以像这样获取所有属性: get-aduser joesmith -Properties * 但我想过滤结果,例
我在运行 Python 3在 Windows 机器上使用 PowerShell .我正在尝试执行一个 Python 文件,然后使用通配符将多个文件(file1.html、file2.html 等)作为
我有一个 div,并且有一些处于未定义级别的子节点。 现在我必须将每个元素的 ID 更改为一个 div。如何实现? 我想,因为它们有向上的ID,所以如果父级是id='path_test_maindiv
我是 Lua 的新手,所以我现在正在学习运算符部分。在 Lua 中是否有与字符串一起使用的通配符? 我有 PHP 背景,我实际上是在尝试编写以下代码: --scan the directory's f
我在 countList 方法上遇到编译时错误。 public static void countList( List list, int count ){ for( int i =
我们需要在运行时检索多个类实例,而无需手动维护所有可用类型的列表。 可能的方法: 检索带有@xy注释的每种类型的实例 检索每种类型的实例实现接口(interface)iXY 检索每种类型的实例,命名如
我目前陷入了序言问题。 到目前为止我有: film(Title) :- movie(Title,_,_).(其中“movie(T,_,_,)”是对我的引用数据库) namesearch(Title,
我想从字符表达式(在 R 中)中删除一个“*”。在阅读帮助页面并尝试谷歌后,我无法充分理解 gsub 的复杂性。有人可以建议我该怎么做吗? 谢谢, 乔纳森。 最佳答案 您需要转义两次:一次针对 R,一
在我的 DOM 中,我有一个动态生成对话框的表。 DOM 中的对话框将具有以下形式的 ID: id="page:form:0:dlg" id="page:form:1:dlg" id="page:fo
我是 Java 新手,并且已经陷入这样一种情况,很明显我误解了它如何处理泛型,但是阅读教程和搜索 stackoverflow 并没有(至少到目前为止)让我清楚我怀疑我滥用了通配符。需要注意的是,我有
我想使用 jQuery 更改单击时图像的 src 属性。这是 HTML: View 2 在 img src 中,我想将“a”替换为“b”,但我的问题是我想忽略它前面的“1”,因为它也可能看起来像这样
我有一个 mysql 数据库,我的表是: Name | passcode ---------------------- hi* | 1111 ------------------
我想选择所有在星号所在位置具有确切 4 个“未知”字符的文档:(例如“****”可能是“2018”) foreach (string s in Directory.GetFiles(@"C:\User
我是一名优秀的程序员,十分优秀!