摘要:
function exportCSV(title, jsonData, name) { // 要导出的json数据 let str = ``; for (let i of title) { str += i + "," } str += "\n" // 增加\t为了不让表格显示科学计数法或者其他格式 阅读全文
摘要:
update a set a.UserAgent = b.UserAgent from InfoVisitDetails a inner join InfoVisitDetails b on a.IP = b.IP where a.VisitUrl like 'https://%' and a.IP 阅读全文
摘要:
select a.name as 表名, max(b.rows) as 记录条数 from sysobjects a ,sysindexes b where a.id=b.id and a.xtype='u' group by a.name order by max(b.rows) desc 阅读全文