摘要:
对比两个数据库中相同的表不同的索引USE db1--实现将sqlserver数据库的索引全部查出,包括索引名select a.name as tabname ,h.name as idnameINTO #tFROM sys.objects as a right join sy... 阅读全文
摘要:
SQL SERVER: 合并相关操作(Union,Except,Intersect)use tempdbcreate table tempTable1 (id int primary key identity, price int)create table tempTable2 (id int pr... 阅读全文
摘要:
SQL Server查询所有存储过程信息、触发器、索引查询所有存储过程select Pr_Name as [存储过程], [参数]=stuff((select ','+[Parameter]from (select Pr.Name as Pr_Name,parameter.name +' ' +Ty... 阅读全文
摘要:
sql通过某个字段名找到数据库中对应的表SELECT sb.name FROM syscolumns s JOIN sysobjects sb ON s.id=sb.idWHERE s.name='你的字段名' 阅读全文