Access2010 error when running: alter table S alter column AGE SMALLINT;

纵饮孤独 提交于 2020-05-24 05:33:00

问题


I only use 'Create' to create a table named 'S'.And 'AGE' is one of its columns.The data type of 'AGE' is INT.

create table S(SNO char(12),SNAME varchar(10),AGE int,SEX char(1),SDEPT varchar(255),primary key(SNO));

When running the following code, appearing messagebox:'Object is invalid or no longer set'. I am new to Access.Please tell me how to fix it.Thanks!

alter table S alter column AGE SMALLINT;

来源:https://stackoverflow.com/questions/61204560/access2010-error-when-running-alter-table-s-alter-column-age-smallint

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!