摘要:
select a + ' '+b as ab from tableName如果是有整型的(例,b字段为int类型):select a +' '+Convert(VARCHAR(50),b) as ab from tableName如果是有小数的(例,b字段为float类型)select a +' '+convert(varchar(20),convert(decimal(18,4),b)) as ab from tableName注释:a,b为列名 阅读全文
摘要:
string strs = string.Empty; string[] strArray1 = { "a", "b", "c", "d" }; string[] strArray2 = { "a", "b", "c", "f", "g" }; Dictionary map = new Dictionary(); for (int k = 0; k < strArray1.Length; k++) { map. 阅读全文
摘要:
第一步,先编写简单的页面代码,这里我们只需要一个按钮就足够了。当然,还有按钮事件。测试绑定enter第二步,于b_onclick()函数加入如下js代码: function document.onkeydown() { //使用document.getElementById获取到按钮对象 var button = document.getElementById("test"); if(event.keyCode == 13) { button.click(); event.returnValue = false; } }然后于IE中运行,你会发现,即使焦点不在按钮上,当你按 阅读全文
摘要:
t_sql语句:replace替换语句:update 表名 set 列名=REPLACE(列名,'替换的数据','替换后的数据') 阅读全文