請問如何從資料庫中讀入日期數值,賦值給變數

2021-05-23 00:15:03 字數 839 閱讀 8036

1樓:難學也要學下去

可用如下bai

方法:du12

3declare @time datetime --定義變數select @time=getdate() --獲取當前zhi日期時間並賦值給dao變數

print @time --輸入版列印變數內容執行結果:權

如果覺得顯示不方便,可將時間型別的內容進行轉換,儲存過程寫法可改為:12

3declare @time varchar(20)select @time=convert(varchar(20),getdate(),120)

print @time

請問:如何利用python從資料庫中讀入一個日期數值,賦值給一個變數? 10

2樓:玩轉資料處理

#!/usr/bin/python

# -*- coding: utf-8 -*-import mysqldb

# 開啟資料庫連線

db = mysqldb.connect("localhost","testuser","test123","testdb" )

# 使用cursor()方法獲取操作回

遊標cursor = db.cursor()# 使用execute方法執行sql語句

cursor.execute("select date_format(now(),'%y-%m-%d')")

# 使用 fetchone() 方法獲取一條資料date_now = cursor.fetchone()print "date now : %s " % date_now# 關閉答資料庫連線

db.close()

MySQL資料庫獲取表中前數值最大的資料

sql select from c1 result mysql query sql ordie mysql error sums mysql num fields result 這個這是欄位的總個數 如果對您有幫助,請記得采納為滿意答案,謝內謝 祝您生活容愉快 vaela select mask f...

C winform中怎麼從資料庫取資料繪製實時曲線圖

可以用微軟的mschart,使用起來比較簡單。如果需要使用示例可以交流一下。如何實現c 繪製動態實時的曲線圖 你需要加入一個timer控制元件,定時重新整理資料,並繪製曲線。對於這個曲線上的點,建議使用一個佇列不斷更新曲線上的點。利用c winform根據資料庫的資料繪出折線圖,求高手給出 實現。自...

php如何將從資料庫中撒的時間只保留日期部分

echo time 當前時間戳echo date y m d 當前的年月日echo date y m d time 把時間戳轉化為年月日格式 kc news array title cut str row title 30 id row id addtime row addtime 改為 kc ne...