摘要:
将查询出的数据插入到另一张表里 insert into table1(uname,address,school) select name,address,'北京大学' from table2 阅读全文
摘要:
sqlservice怎么搞链接服务器 1.在数据库——》服务器对象——》链接服务器——》右键新建链接服务器 2.首先在链接服务器里面填写要链接服务器的名称——》选择sqlservice——》点击安全性——》1.点击添加你登录服务器的登录名(可不填) ——》在单选使用此安全上下文建立链接——》填写需要 阅读全文
摘要:
sql server中查询一个表中某个数据重复条数大于1的所有信息 select id,Count(*) from table group by id having count(id)>1 阅读全文
摘要:
sql如何判断某值并赋给他另外的值 select *,case when xingbie=0 then '女' else '男' end as xingbie from yishibiao select XingBieHanZi,CASE WHEN(XingBieHanZi='男') THEN 1 阅读全文
摘要:
JS 数组中随机选取一个值 var arr = ["aqua", "red", "white", "purple", "yellow"]; console.log(arr[Math.floor((Math.random() * arr.length))]); js去掉数组中的某个元素 arr.spl 阅读全文
摘要:
JQuery 获取多选框的值 <input type="checkbox" name="test" value="1" id="a">增 <input type="checkbox" name="test" value="2" id="b">删 <input type="checkbox" name 阅读全文
摘要:
sql语句 获取当前时间 sql读取系统日期和时间的方法如下: --获取当前日期(如:yyyymmdd) select CONVERT (nvarchar(12),GETDATE(),112) --获取当前日期(如:yyyymmdd hh:MM:ss) select GETDATE()--获取但前时 阅读全文
摘要:
DATEADD(datepart,number,date) date 参数是合法的日期表达式。number 是您希望添加的间隔数;对于未来的时间,此数是正数,对于过去的时间,此数是负数。 datepart 参数可以是下列的值: 阅读全文
摘要:
C# 判断是否为数字 string a = "a123"; if (a != null && Regex.IsMatch(a, @"^\d+$")) { Console.WriteLine("数字"); } else { Console.WriteLine("不是数字"); } Console.Re 阅读全文
摘要:
存储过程写临时表 1.创建临时表 create table #cursor ( Id int, Name varchar ); 2.把查询到的数据添加进去,注意属性要一样。 insert into #cursor select * FROM [dbo].[biaoming] insert into 阅读全文