Maison  >  Article  >  base de données  >  MySQL和sqlserver中判断表是否存在语句_MySQL

MySQL和sqlserver中判断表是否存在语句_MySQL

WBOY
WBOYoriginal
2016-06-01 13:31:351187parcourir

bitsCN.com

MySQL和sqlserver中判断表是否存在语句

 

MySQL:

   SELECT COUNT(*) FROM information_schema.   TABLES WHERE TABLE_NAME="表名";

 

 // 是双引号

 

值为1 表示存在该表; 为0 不存在表。

 

sqlserver:

 

    select 1 from sysobjects where name='表名' ;

 

 

值为1 表示存在表, 为null 不存在表。

 

bitsCN.com
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn