Access SQL Create Table

2006-12-19 8:29 am
想問下如果我想寫SQL create table into Access DB.
個type 係boolean 應該點寫家?
同埋個type = date , 如果我想define清楚係時間定係日期, 又做唔做到?

有冇reference可以推介下
入access 既field defined 同其他都好唔同, 好難寫呀, 幫幫手
Thank you!

回答 (1)

2006-12-19 6:05 pm
✔ 最佳答案
Access 中的 boolean 是用 'bit' 型態,
e.g. : CREATE TABLE testing (active_flag bit)


而 date 形態是沒有定義只儲存時間或日期的, 只能設定顯示格式, 如只想取得日期或時間可使用 format 函數,
e.g. : SELECT format(thedate, "dd/mm/yyyy") AS datevalue from .....
e.g. : SELECT format(thetime, "hh:mm:ss") AS timevalue from .....

有需要可到以下網址參考
http://www.accessmonster.com/


收錄日期: 2021-04-23 18:56:16
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20061219000051KK00094

檢視 Wayback Machine 備份