如何使用python在SQL查询中获得新行(行方式)输出

时间:2017-10-17 14:12:26

标签: python mysql sql postgresql

我希望以行方式输出sql,不希望输出为内联。

这是图像中的代码和输出: -

code and output

那么,我怎样才能直观地查看查询结果,而不是内联。 例如: -

   Ursula La Multa        | 4790940
   Rudolf von Treppenwitz | 3593205
   Markoff Chaney         | 2395470
   Anonymous Contributor  | 1197735

此外,我如何从[十进制('4790940')]中获得关键词'DECIMAL'的输出

1 个答案:

答案 0 :(得分:1)

for result in results:
    print ("%s\t | %s" % (result[0], result[1]))