簡單的迴圈將資料庫中需要的資料存入列表list

2021-09-05 01:35:29 字數 577 閱讀 3153

查詢表獲取返回資料

def find_table()

: sql =

"select * from card "

cursor.

execute

(sql)

result = cursor.

fetchall()

return result

print

(def find_table()

)

建立空list和迴圈來把需要的資料裝入空list中

def find_statu()

: statu_list =

j =0while j <

len(

find_table()

):statu_list.

(find_table()

[j][12]

) j=j+

1return statu_list

print

(def find_statu()

)

這樣就得到了想要的資料

資料庫的迴圈

oracle oracle goto declare l i number begin l i 10 l i l i 1 dbms output.put line l i if l i 0 then goto repeat loop 當小於10時候goto到repeat loop end if en...

ORACLE 資料庫中for迴圈的使用。

涉及到批量新增有規律的資料的時候,往往會涉及到迴圈,有for迴圈,有while迴圈,以前插入資料經常在程式裡面寫迴圈,沒有想過原來oracle中自帶迴圈語法,既然用到了,就當隨筆記錄下來,以方便以後查閱。for迴圈示例 i number 用for實現 begin for i in 101 10000...

將資料庫中的資料轉換為insert語句

將資料庫中的資料轉換成insert語句的t sql 如下 if exists select from sys.objects where name sp generate insert script drop proc sp generate insert script gocreate proce...