freeCodeCamp/curriculum/challenges/chinese-traditional/08-data-analysis-with-python/data-analysis-with-python-c.../reading-data-from-databases.md

1.2 KiB
Raw Blame History

id title challengeType videoId bilibiliIds dashedName
5e9a093a74c4063ca6f7c163 從數據庫中讀取數據 11 MtgXS1MofRw
aid bvid cid
890546354 BV1JP4y1h7gk 409020851
reading-data-from-databases

--description--

在視頻中我們使用的編輯器工具是在 notebook.ai 這個平臺,你也可以選擇用其他的平臺,比如說 Google Colab 也是一個不錯的選擇。

以下有更多的資料

--question--

--text--

Cursor 實例中都有什麼方法,這些方法能用來做什麼?

--answers--

Cursor 實例中有方法 .run() ,它允許你運行 SQL 查詢語句。


Cursor 實例中有方法 .select() ,它允許你選擇記錄。


Cursor 實例有方法 .execute() 它能夠接收在數據庫中運行的 SQL 參數。

--video-solution--

3