1.首先點擊頂部菜單中的「新查詢」,打開一個SQL輸入窗口。
⑵ 如何在資料庫輸入時間類型
可將時間類型定義為datetime,然後以字元串的形式插入即可。
如:
創建表:
createtabletest
(idint,
createtimedatetime)
插入數據:
insertintotestvalues(1,'2015-08-01')
插入後結果如圖:
⑶ 請問Access的日期格式
根據正在使用哪個部分,Access 提供了幾個不同的方法用來設置日期格式。在桌面資料庫中的窗體和報表上,日期通常顯示在文本框中。只需將文本框的「格式」屬性設置為所需的日期格式。在布局視圖或設計視圖中,按 F4 以顯示出「屬性表」,然後將「格式」屬性設置為預定義的日期格式之一:
⑷ 如何往資料庫中插入日期格式的數據
一個資料庫文件中有很多表
dim
con
as
adodb.connection
dim
zrst
as
adodb.recordset
set
zcon=new
adodb.connection
con.cursorlocation
=
aseclient
con.connectionstring
=
"provider=microsoft.jet.oledb.4.0;data
source="
&
路徑
&
";persist
security
info=false"
con.open
'for
i=1
to
100
con.execute
"insert
*
into
table1(f1,f2)
values("+chr(34)+"張三"+chr(34)+","+chr(34)+"李四"+chr(34)+")"
'table1是表名
'next
i