在SYBASE11.9中更改表的字段类型
<p>我要在SYBASE11.9中使用SQL语句更改表中字段的数据类型</p><p>1.alter table 表名 alter column 字段名 money null</p><p>错误提示:Incorrect syntax near the keyword 'ALTER'.</p><p>2.alter table 表名 drop column 字段名 </p><p>错误提示:Incorrect syntax near the keyword 'DROP'.</p><p>这二个语句都提示语法错误</p><p>怎么样在11.9中修改表的数据类型呢</p> <p><font size="2">alter table_name modify column_name datatype_name<br/>for example: table name: t1<br/> column name: c1<br/> datatype_name: char<br/></font><font size="2">alter t1 modify c1 char(10)</font></p>
页:
[1]