1:错误信息: error:Unicode data in a Unicode-only collation or ntext data cannot be sent to clients using DB-Library (such as ISQL) or ODBC version 3.7 or earlier. 2:表结构 在sql server中,ntext 和nva
以表table为例, 表table中只有一个字段a 1) 找出重复记录 select a from table group by a having count(*) > 1 2) 删除重复记录 delete from table A where A.rowid < (select max(B.rowid) from table B where A.a = B.a) 表stuinf
和mysql不同;每个数据库都有自己的信息总结表四个系统数据库 master sysdatabases :所有数据库信息 name :所有数据库名 sysobjects :数据库所有对象的信息 syscolumns :字段信息 固定字段名 name 对象名 id 对象id xtype 对象类型代码 xtype='U' 用户创建的表 xtype='S' 系统表 model sysobjects sy