当前位置:数据库 > SQLServer >>

如何理解mssql中的not exists

如何理解mssql中的not exists通俗的理解!
答案:不存在,不包含的意思,与exists相反。
--下面语句是表示:如果当前数据库已有department表,则删除,然后再创建。
Drop table if exists Department; 
 Create table Department
 ( id char(2) not null primary key,...
 );

上一个:MSSQL存储过程新手请教
下一个:下了一个MSSQL源码,但不会安装,高手指点

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,