使用查询分析器创建表如何对属性列指定默认值?如题。使用Transect语句create table中对volumn值指定默认值怎么写?例如 create table sex ( sex char(2) not null description 性别) 这行想要他的默认值是 '男 ',该怎么办?[解决办法]create table sex ( sex char(2) not null default '男 ')