如何使用熊猫合并两个数据框

时间:2020-02-26 22:55:20

标签: python pandas

下面有两个与sql数据库相关的数据框,所以现在我需要使用熊猫合并这些数据框。

hua_umts_inter_freq_cell

id  cell_name        n_cell_name                hua_st_umts_inter_relation_key
1   1019611            24733                               1019611_24733
2   1019611           1108422                             1019611_1108422
3   1019611           1109972                             1019611_1109972
4   1019611            16530                               1019611_16530
5   1019611            16556                               1019611_16556
6   1019611            16580                              1019611_16580
7   1019611            16581                               1019611_16581
8   1019611            30755                                1019611_30755
9   1019611            30756                               1019611_30756

hua_umts_intra_freq_cell

cell_name   n_cell_name hua_st_umts_intra_relation_key
1019611 1000610 1019611_1000610
1019611 1005908 1019611_1005908
1019611 1005909 1019611_1005909
1019611 1019612 1019611_1019612
1019611 1019613 1019611_1019613
1019611 1019678 1019611_1019678
1019611 1020749 1019611_1020749
1019611 1020511 1019611_1020511
1019611 1020512 1019611_1020512

我在下面创建了一个查询,将两个表合并在一起

INSERT INTO [toolDB].[dbo].[hua_inter_intra_merge] (cell_name, n_cell_name) SELECT [cell_name] ,[n_cell_name] FROM [toolDB].[dbo].[hua_umts_inter_freq_cell] UNION SELECT [cell_name] ,[n_cell_name] FROM [toolDB].[dbo].[hua_umts_intra_freq_cell]

我想用熊猫作为合并这两个表的查询来创建一个函数。

0 个答案:

没有答案