文章已经迁移到:http://www.ayjs.net/post/99.html 文章已经迁移到:http://www.ayjs.net/post/99.html 文章已经迁移到:http://www.ayjs.net/post/99.html 文章已经迁移到:http://www.ayjs.net/post/99.html 文章已经迁移到:http://www.ayjs.net/post/99.html…
sql 语句 获取某张表某列字段最短的某几行数据 SELECT C_name,C_code FROM Catalog where LEN(C_code)=LEN((SELECT top 1 C_code FROM Catalog order By LEN(C_code)))…
/*查询某张表被哪些存储过程或者视图用到的sql语句*/select distinct object_name(id) from syscomments where id in (select id from sysobjects where type in('V','P')) and text like '%表名%'…
declare @newTime varchar(50); declare @lasetTime varchar(50); set @newTime= getdate(); set @lasetTime= STUFF(sUBSTRING(@newTime,1,5),3,1,''); select * from (select * from(select B.Name,B.Id,B.Price,B.Term,B.Value,C.LoginName  from (select * from(SELE…
select   count(syscolumns.name)    from   syscolumns   ,   sysobjects       where   syscolumns.id   =   sysobjects.id     and   sysobjects.name   =   '表名'…
Oracle写法: update temp_agentpay_df q set q.up_batch_bizid=(select c.batch_bizid from temp_df_id c where c.detail_id=q.detail_id) ; Mysql写法: update temp_agentpay_df q,temp_df_id c set q.up_batch_bizid=c.batch_bizid where c.detail_id=q.detail_id;…
select count(1) from information_schema.columns where table_schema='dbname' and table_name='tbname;…
利用Excel以及word文档进行操作 将表的字段以及数据全部放入Excel表中并保存. 在word表中将写好的sql语句放入文档,利用邮件--选择收件人--使用现有列表--(选择之前做好的Excel表)--插入合并域(添加在sql语句中的条件中)---完成并合并(编辑单个文档选择全部)--完成(不过为了在使用中更加方便,在保存时应当保存为文本文档模式,既是纯文本模式)…
在mysql中,通过一张表的列修改另一张关联表中的内容: 1:  修改1列 update student s, city c set s.city_name = c.name where s.city_code = c.code; 2:  修改多个列 update a, b set a.title=b.title, a.name=b.name where a.id=b.id 3: 采用子查询 update student s set city_name = (select name from c…
<Windows Azure Platform 系列文章目录>  Azure SQL Database (19) Stretch Database 概览      Azure SQL Database (20) 使用SQL Server 2016 Upgrade Advisor      Azure SQL Database (21) 将整张表都迁移到Azure Stretch Database里      Azure SQL Database (22) 迁移部分数据到Azure Stretc…