摘要:
复制下文到txt文件,改后缀→.bat, 双击文件执行激活。 @echo off (cd /d "%~dp0")&&(NET FILE||(powershell start-process -FilePath '%0' -verb runas)&&(exit /B)) >NUL 2>&1 title 阅读全文
摘要:
官方地址 https://dev.mysql.com/doc/refman/8.0/en/window-function-descriptions.html 窗口函数:也可以被称为OLAP函数或分析函数。OLAP(Online Anallytical Processing) 窗口函数大体可以分为以下 阅读全文
摘要:
sql之聚合函数详解 官方网址 https://dev.mysql.com/doc/refman/8.0/en/aggregate-functions.html 1.sum 计算表中数值列的数据合计值。 select sum(user_money) as 'sum' from dbbors.t_us 阅读全文
摘要:
1.语意标签 语义化标签使页面内容结构化,见名知义 标签 描述 <hrader></header> 定义了文档的头部区域 <footer></footer> 定义了文档的尾部区域 <nav></nav> 定义文档的导航 <section></section> 定义文档中的节(section、区段) 阅读全文
摘要:
mysql8忘记密码之解决方法 1. 关闭MySQL服务 在services.msc中手动关闭 2. 进入mysql安装的bin目录,以管理员模式打开cmd窗口,执行 mysqld --console --skip-grant-tables --shared-memory 3. 打开一个新的cmd窗 阅读全文
摘要:
SqlServer1.0 1.SQLSERVER 中GO 每个被GO分隔的语句都是一个单独的事务,一个语句执行失败不会影响其它语句执行。 select * from t_user where id=1goselect now()go 阅读全文
摘要:
如果我们列出所有低于10的自然数,它们是3或5的倍数,则得到3、5、6和9。这些倍数的总和为23。 找出1000以下3或5的所有倍数的总和。 static void sumThreeFive(int targetNum) { int result = 0; for (int i = 3; i < t 阅读全文
摘要:
Head First设计模式学习笔记: https://www.iteye.com/category/92591 阅读全文