关于SQL中一个表的转换问题
phpcn_u699
phpcn_u699 2017-03-07 10:18:05
0
2
1350

表结构如下:

date,a,b,c
0101,1,2,3
0202,4,5,6

要转换成:

date,col1,col2
0101,a,1
0202,a,4
0101,b,2
0202,b,5
0101,c,3
0202,c,6

想了很久,不知道该如何去写。使用Python的pandas和sql都可以,十分感谢!


phpcn_u699
phpcn_u699

reply all (2)
数据分析师

About the conversion problem of a table in SQL-PHP Chinese website Q&A-About the conversion problem of a table in SQL-PHP Chinese website Q&A

Look around and learn.

    巴扎黑

    可以用pandas的melt方法

    a = pd.DataFrame([[0101,1,2,3],[0202,4,5,6]],columns=['date','a','b','c'])
    date a b c0 65 1 2 31 130 4 5 6
    pd.melt(a,id_vars=['date'],var_name='col1',value_name='col2')

    date col1 col20 65 a 11 130 a 42 65 b 23 130 b 54 65 c 35 130 c 6


      Latest Downloads
      More>
      Web Effects
      Website Source Code
      Website Materials
      Front End Template
      About us Disclaimer Sitemap
      php.cn:Public welfare online PHP training,Help PHP learners grow quickly!