我同时学习python和sql。 ;)以下python脚本调用sql脚本。我试图弄清楚如何从查询中获取输出到csv。我已经走到了这一步:
ServicePointManager.ServerCertificateValidationCallback += () =>
{
return true;
};
有人可以告诉我我错过了什么吗?
答案 0 :(得分:0)
可能这会对你有所帮助。 Documentation
有一个函数fetchall(),它可以获取所有查询结果行。
您可以将其用作
<span class="dropdown open">
<button aria-expanded="true" class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown">Zimmer<br> Rooms
<span class="caret"></span></button>
<ul class="dropdown-menu">
<form class="filter">
<input id="zimmer5" class="unchecked" type="checkbox"> 5.5
<br>
<input id="zimmer4" class="unchecked" type="checkbox"> 4.5
<br>
<input id="zimmer3" class="unchecked" type="checkbox"> 3.5
<br>
<input id="zimmer2" class="unchecked" type="checkbox"> 2.5
<br>
</form>
</ul>
</span>
<span class="dropdown">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown">Stockwerk<br> Floor
<span class="caret"></span></button>
<ul class="dropdown-menu">
<form class="filter">
<input id="checkboxID" class="unchecked" type="checkbox"> EG
<br>
<input id="checkbox1OG" class="unchecked" type="checkbox"> 1.OG
<br>
<input id="checkbox2OG" class="unchecked" type="checkbox"> 2.OG
<br>
<input id="checkbox3OG" class="unchecked" type="checkbox"> 3.OG
</form>
</ul>
</span>
<span class="dropdown">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown">Haus<br> House
<span class="caret"></span></button>
<ul class="dropdown-menu">
<form class="filter">
<input id="haus1" class="unchecked" type="checkbox"> 1
<br>
<input id="haus2" class="unchecked" type="checkbox"> 2
<br>
<input id="haus3" class="unchecked" type="checkbox"> 3
<br>
<input id="haus4" class="unchecked" type="checkbox"> 4
<br>
<input id="haus5" class="unchecked" type="checkbox"> 5
<br>
<input id="haus6" class="unchecked" type="checkbox"> 6
<br>
<input id="haus7" class="unchecked" type="checkbox"> 7
<br>
<input id="haus9" class="unchecked" type="checkbox"> 9
<br>
<input id="haus11" class="unchecked" type="checkbox"> 11
</form>
</ul>
</span>
<span class="dropdown">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown">Bruttomiete<br> Gross Rent
<span class="caret"></span></button>
<ul class="dropdown-menu">
<form class="filter">
<input id="range1" class="unchecked" type="checkbox"> 1200 – 1600
<br>
<input id="range2" class="unchecked" type="checkbox"> 1600 – 2000
<br>
<input id="range3" class="unchecked" type="checkbox"> 2000 – 2400
<br>
<input id="range4" class="unchecked" type="checkbox"> 2400 – 3000
<br>
<input id="range5" class="unchecked" type="checkbox"> 3000 – 3400
</form>
</ul>
</span>
query_result将是tuple类型。
这将一次只包含一个命令的结果。
现在你可以使用列表了。并附上所有结果。
e.g。
cur.execute("sql_command")
query_result = cur.fetchall()
现在在for循环结束时,你将拥有包含所有查询输出的列表(即结果)。
通过使用另一个for循环结果(这是一个列表),您可以逐个获得每个查询的结果 并且可以用csv文件写。
我现在不知道如何处理csv文件。也许您需要在每次迭代时保存csv文件。 我希望你能解决这个问题。