我很担心为什么在微软70-461考试的准备工作中它说:
cout << this->stduents[12].studLast << endl;
Create tables without using the built in tools; ALTER; DROP; ALTER COLUMN; CREATE
究竟是什么意思?我不记得作为声明或命令可以请任何人为我解释。谢谢:))
答案 0 :(得分:6)
您可以将其用作alter table
语句的一部分来更改列定义:
alter table t1
alter column c1 varchar(50) not null
如果没有alter table
件,则会出错。