- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
继我之前的问题之后:
Pixel values of raster records to be inserted in the table as columns
假设我的查询结果有 5300 行,结果如下:
+-------+
|value |
+-------+
| 15624 |
| 15899 |
| 56267 |
| 85955 |
+-------+
我希望它们在一个表中,前 53 行在 val1
列中,后 53 行在 val2
列中,依此类推。最后,我的表中将有 100 个新列。这可能吗?如果可以,我该如何实现?
最佳答案
这是一个 possibly somewhat saner approach using multi-dimensional arrays .
请永远、永远、永远、永远使用以下查询:
CREATE EXTENSION tablefunc;
SELECT * FROM crosstab(
'SELECT ''row1''::text, width_bucket(x, 1, 53001, 100), array_agg(x order by x)::integer[] from generate_series(1,53000) x GROUP BY 2'
) ct(
rowname text,
col1 integer[], col2 integer[], col3 integer[], col4 integer[], col5
integer[], col6 integer[], col7 integer[], col8 integer[], col9 integer[],
col10 integer[], col11 integer[], col12 integer[], col13 integer[], col14
integer[], col15 integer[], col16 integer[], col17 integer[], col18 integer[],
col19 integer[], col20 integer[], col21 integer[], col22 integer[], col23
integer[], col24 integer[], col25 integer[], col26 integer[], col27 integer[],
col28 integer[], col29 integer[], col30 integer[], col31 integer[], col32
integer[], col33 integer[], col34 integer[], col35 integer[], col36 integer[],
col37 integer[], col38 integer[], col39 integer[], col40 integer[], col41
integer[], col42 integer[], col43 integer[], col44 integer[], col45 integer[],
col46 integer[], col47 integer[], col48 integer[], col49 integer[], col50
integer[], col51 integer[], col52 integer[], col53 integer[], col54 integer[],
col55 integer[], col56 integer[], col57 integer[], col58 integer[], col59
integer[], col60 integer[], col61 integer[], col62 integer[], col63 integer[],
col64 integer[], col65 integer[], col66 integer[], col67 integer[], col68
integer[], col69 integer[], col70 integer[], col71 integer[], col72 integer[],
col73 integer[], col74 integer[], col75 integer[], col76 integer[], col77
integer[], col78 integer[], col79 integer[], col80 integer[], col81 integer[],
col82 integer[], col83 integer[], col84 integer[], col85 integer[], col86
integer[], col87 integer[], col88 integer[], col89 integer[], col90 integer[],
col91 integer[], col92 integer[], col93 integer[], col94 integer[], col95
integer[], col96 integer[], col97 integer[], col98 integer[], col99 integer[],
col100 integer[]
);
解决此问题的正确方法几乎肯定是在您的应用程序中。 SQL擅长很多事情。这不是其中之一,尤其是在 PostgreSQL 中,它对数据透视表的支持非常有限。在任何数据库中,这都是一件疯狂的事情。
就我而言,如果我必须使用查询来生成列列表,这表明系统被迫做一些它不太适合的事情:
select string_agg('col'||n||' integer[]',', ') FROM generate_series(1,100) n;
关于postgresql - 如何将查询结果分解为单独的列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13149421/
我正在尝试在 R 中计算任意 N x J 矩阵 S 的投影矩阵 P: P = S (S'S) ^ -1 S' 我一直在尝试使用以下函数来执行此操作: P 概述 solve 基于一般方阵的 LU 分解
所以我有一个包含数千行的非常旧的文件(我猜是手工生成的),我正试图将它们移动到一个 rdb 中,但是这些行没有转换为列的格式/模式。例如,文件中的行如下所示: blah blahsdfas
这实际上只是一个“最佳实践”问题...... 我发现在开发应用程序时,我经常会得到很多 View 。 将这些 View 分解为几个 View 文件是常见的做法吗?换句话说......而不只是有view
使用以下函数foo()作为简单示例,如果可能的话,我想将...中给出的值分配给两个不同的函数。 foo args(mapply) function (FUN, ..., MoreArgs = NUL
正面案例:可以进入列表 groovy> println GroovySystem.version groovy> final data1 = [[99,2] , [100,4]] groovy> d
省略素数计算方法和因式分解方法的详细信息。 为什么要进行因式分解? 它的应用是什么? 最佳答案 哇,这个线程里有这么多争斗。 具有讽刺意味的是,这个问题有一个主要的有效答案。 因式分解实际上在加密/解
术语“分解不良”和“重构”程序是什么意思?你能举一个简单的例子来理解基本的区别吗? 最佳答案 重构是一种通用技术,可以指代许多任务。它通常意味着清理代码、去除冗余、提高代码质量和可读性。 分解不良代码
我以前有,here ,表明 C++ 函数不容易在汇编中表示。现在我有兴趣以一种或另一种方式阅读它们,因为 Callgrind 是 Valgrind 的一部分,在组装时显示它们已损坏。 所以我想要么破坏
最初,我一直在打开并同时阅读两个文件,内容如下: with open(file1, 'r') as R1: with open(file2, 'r') as R2: ### m
我正在尝试摆脱 标签和标签内的内容使用 beatifulsoup。我去看了文档,似乎是一个非常简单的调用函数。有关该功能的更多信息是 here .这是我到目前为止解析的 html 页面的内容...
给定一个 float ,我想将它分成几个部分的总和,每个部分都有给定的位数。例如,给定 3.1415926535 并要求将其分成以 10 为基数的部分,每部分 4 位数字,它将返回 3.141 + 5
我的 JSF 项目被部署为一个 EAR 文件。它还包括一些 war 文件。我需要 EAR 的分解版本(包括分解的内部 WAR)。 有什么工具可以做到吗? 最佳答案 以编程方式还是手动? EAR 和 W
以下函数不使用行透视进行 LU 分解。 R 中是否有一个现有的函数可以使用行数据进行 LU 分解? > require(Matrix) > expand(lu(matrix(rnorm(16),4,4
关闭。这个问题是opinion-based .它目前不接受答案。 想改进这个问题?更新问题,以便 editing this post 提供事实和引用来回答它. 7年前关闭。 Improve this
我正在使用登记数据进行病假研究。从登记册上,我只得到了每个人的病假开始日期和结束日期。但日期并没有逐年分割。例如,对于人 A,只有开始日期 (1-may-2016) 和结束日期 (14-feb-201
我发现以下 R 代码使用 qr 因式分解无法恢复原始矩阵。我不明白为什么。 a <- matrix(runif(180),ncol=6) a[,c(2,4)] <- 0 b <- qr(a) d <-
我正在尝试检测气候数据时间序列中的异常值,其中一些缺失的观测值。在网上搜索我发现了许多可用的方法。其中,STL 分解似乎很有吸引力,因为它去除了趋势和季节性成分并研究了其余部分。阅读 STL: A S
我想使用 javascript 分解数组中的 VIN,可能使用正则表达式,然后使用某种循环... 以下是读取 VIN 的方法: http://forum.cardekho.com/topic/600-
我正在研究 Databricks 示例。数据框的架构如下所示: > parquetDF.printSchema root |-- department: struct (nullable = true
我正在尝试简化我的代码并将其分解为多个文件。例如,我设法做到了: socket.once("disconnect", disconnectSocket); 然后有一个名为 disconnectSock
我是一名优秀的程序员,十分优秀!