摘要: Windows Server 2025 官方预览版密钥 标准版: MFY9F-XBN2F-TYFMP-CCV49-RMYVH 数据中心版: 2KNJJ-33Y9H-2GXGX-KMQWH-G6H67 Azure 版本不接受密钥 阅读全文
posted @ 2024-04-03 09:03 崇尚技术 阅读(317) 评论(0) 推荐(0) 编辑
摘要: sql 逻辑顺序 1. FROM 指定要查询的表名,以及对这些表进行操作的表运算符 2. WHERE 指定一个谓词或逻辑表达式,从而过滤由FROM阶段返回的行。 对查询性能有重要的影响,在过滤表达式的基础上,SQL server会计算使用什么索引来访问请求的数据。T-SQL使用的是三值谓词逻辑TRU 阅读全文
posted @ 2022-12-15 20:53 崇尚技术 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 首先看数据表: index.php 入口文件 <?phpinclude "StudentController.php"; StudentController.php 控制器 <?phprequire_once ("StudentModel.class.php");$modelObj = new St 阅读全文
posted @ 2022-04-10 17:48 崇尚技术 阅读(63) 评论(0) 推荐(0) 编辑
摘要: index.php入口文件 <?phprequire_once "Controller.php"; Controller.php控制器 <?php//包含模型类文件,注意是先引用模型后引用视图require_once ("model.class.php");//获取客户传递的参数,给个默认值为3$t 阅读全文
posted @ 2022-04-10 15:05 崇尚技术 阅读(41) 评论(0) 推荐(0) 编辑
摘要: Windows6.1-KB2731771-x64.msu 提示此更新不适用于您的计算机 ie10 ie11 安装失败 1,C盘新建update文件夹,把Windows6.1-KB2731771-x64.msu拷贝到此文件夹下 2,cmd下输入:expand –F:* C:\update\Window 阅读全文
posted @ 2021-06-04 11:10 崇尚技术 阅读(796) 评论(0) 推荐(0) 编辑
摘要: /etc/systemd/system/mysqld.service [Unit] Description=MySQL Server Documentation=man:mysqld(8) After=network.target After=syslog.target [Install] Want 阅读全文
posted @ 2020-12-03 21:49 崇尚技术 阅读(199) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { int[] nums = { 5, 10, 3,8,20,7}; Console.WriteLine("数组长度:"+nums.Length); for (int i = 0; i < nums.Length; i++) //外层循 阅读全文
posted @ 2020-09-26 23:29 崇尚技术 阅读(115) 评论(0) 推荐(0) 编辑
摘要: Visual Studio Professional 2015简体中文版(专业版)KEY:HMGNV-WCYXV-X7G9W-YCX63-B98R2Visual Studio Enterprise 2015简体中文版(企业版)KEY:HM6NR-QXX7C-DFW2Y-8B82K-WTYJV 阅读全文
posted @ 2020-09-09 16:44 崇尚技术 阅读(2475) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.Serialization.Formatters.Binary; //引入类库 using System.IO; using ConsoleApplication6; //引入类所在的... 阅读全文
posted @ 2020-09-08 18:26 崇尚技术 阅读(132) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.Serialization.Formatters.Binary; //引入类库 using System.IO; using ConsoleApplication6; //引入类所在的... 阅读全文
posted @ 2020-09-08 18:26 崇尚技术 阅读(111) 评论(0) 推荐(0) 编辑