摘要: 1、二进制数据类型。 二进制数据包括 Binary、Varbinary 和 Image Binary 数据类型既可以是固定长度的(Binary),也可以是变长度的。 Binary[(n)] 是 n 位固定的二进制数据。其中,n 的取值范围是从 1 到 8000。其存储空间的大小是 n + 4 个字节 阅读全文
posted @ 2022-03-08 15:56 给自己个晚安 阅读(3971) 评论(0) 推荐(0) 编辑
摘要: 1 判断数据库是否存在if exists (select * from sys.databases where name = '数据库名') drop database [数据库名] 2 判断表是否存在if exists (select * from sysobjects where id = ob 阅读全文
posted @ 2022-03-08 09:29 给自己个晚安 阅读(331) 评论(0) 推荐(0) 编辑