我目前正在撰写论文,需要在WITH a_sequence AS (
SELECT nextval('table_a_a_id_seq') AS a_id
),
insert_b_query AS (
INSERT INTO table_b (other_table_id, a_id)
SELECT other_table_id, (SELECT a_id FROM a_sequence)
FROM other_table
RETURNING other_table_id, b_id
)
INSERT INTO table_a (a_id, col_a, column_to_update)
SELECT
(SELECT a_id FROM a_sequence)
, 'hello'
, b_id
FROM insert_b_query
LEFT JOIN other_table ON other_table.other_table_id = insert_b_query.other_table_id
WHERE other_table.condition_col = TRUE
;
地图上制作一些标记。我在Python中使用了BoxMap
,我的地图中的输出如下:
但我想拥有的是:
我尝试过folium
和glyphicon
中的其他款式。但我找不到font-Awesome
图标。
我发现number
可能会做这项工作,但我对此知之甚少。
有人可以帮帮我吗?我的代码如下:
Leaflet