摘要:
1.对查询进行优化,应尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引。 2.应尽量避免在 where 子句中使用!=或<>操作符,否则将引擎放弃使用索引而进行全表扫描。 3.应尽量避免在 where 子句中对字段进行 null 值判断,否则将导致引擎放弃使用索引 阅读全文
摘要:
SELECT * FROM [PE_ContentManage_Article] select * from [siteazure.sgp.local.cn.3000].[dbo].[PE_ContentManage_Article] for xml raw('Article') ,elements 阅读全文
摘要:
查询: select * from ceshitable where ceshi.value('(ceshi/name)[1]','nvarchar(200)') like '%ceshi9%'; 修改: update ceshitable set ceshi.modify('replace val 阅读全文