摘要:
public partial class Form : Form { //窗体移动API [DllImport("user32.dll")] public static extern bool ReleaseCapture(); [DllImport("user32.dll")] public static ... 阅读全文
摘要:
select a.GM_Name as 名称,a.GM_Code 代码,b.DC_Code as 上级,b.DC_LVL as 排序 from HIS_Pubdata..Tbl_Dic_DeptGroupMethod as a CROSS JOIN HIS_Pubdata..Tbl_Dic_DeptCategory as b where a.ZDLevel=''效果 阅读全文
摘要:
查询所有数据库名 SELECT Name FROM Master..SysDatabases 查询指定数据库下的表名和视图名 select * from 数据库名..sysobjects where xtype='V'or xtype='U' 查询指定数据库下的指定表的列名 select name from 数据库名.dbo.syscolumns where id=(select id f... 阅读全文
摘要:
let arr = ['apple', 'banana', 'orange', 'tomato']; //循环内容 for(let val of arr) { console.log(val); } //循环索引 for(let index of arr.keys()) { consol... 阅读全文