一、Access比较常用的数据类型:文本、备注、数字、日期/时间、货币
意思 Sql Access
1)文本 nvarchar(30) test
2)备注 ntext demo
3)数字 int,float,double number
4)日期/时间 DateTime Date/Time
5)货币 Money Currency
二、alter的用法(在sql server)
1)修改表中的列名的数据类型: alter table 表名 alter column 列名 新的数据类型
比如: alter table Student alter Address varchar(100)
2)新增表中的一列
alter table Student add Sex varchar(10) null