例如我有我的字典:my_dict = {'2':'even','1':'odd','3':'odd'}
这是我的数据库:
+---------+--------+
| Numeric | String |
+---------+--------+
| 5 | five |
| 4 | four |
| 3 | three |
| 2 | two |
| 1 | one |
+---------+--------+
在my_dict
字典中,使用它们keys
,我想String
在我的数据库(SQL SERVER)中获取它们的值,并使用它们values
,按以下顺序对它们的String
值进行排序:
odd - even - odd
被喜欢这个
one two three
.
并像这样打印输出:Let's count one two three
. 实际上,我只是基于 Jisoo 的问题Querying a list of tuples in Database因为我们非常相似,但在我的,是关于字典的。