网站首页 站内搜索

搜索结果

查询Tags标签: ..,共有 472条记录
  • linux alias设置

    临时设置alias cp=cp –iunalias cp 取消系统的别命令alias rm=rm -f alias ...=cd ../.. alias ....=cd ../../../ alias egrep=egrep --color=auto alias grep=grep --color=auto alias l.=ls -d .* --color=auto alias ll=ls -l --color=auto alias ls=ls --colo…

    2021/8/17 7:06:25 人评论 次浏览
  • linux alias设置

    临时设置alias cp=cp –iunalias cp 取消系统的别命令alias rm=rm -f alias ...=cd ../.. alias ....=cd ../../../ alias egrep=egrep --color=auto alias grep=grep --color=auto alias l.=ls -d .* --color=auto alias ll=ls -l --color=auto alias ls=ls --colo…

    2021/8/17 7:06:25 人评论 次浏览
  • 腾讯云TDSQL PostgreSQL版 -最佳实践 |优化 SQL 语句

    查看是否为分布键查询 postgres=# explain select * from tbase_1 where f1=1; QUERY PLAN -------------------------------------------------------------------------------- Remote Fast Query Execution (cost=0.00..0.00 rows=0 width=0) Node/s: dn001, dn002 -&…

    2021/8/12 2:06:39 人评论 次浏览
  • 腾讯云TDSQL PostgreSQL版 -最佳实践 |优化 SQL 语句

    查看是否为分布键查询 postgres=# explain select * from tbase_1 where f1=1; QUERY PLAN -------------------------------------------------------------------------------- Remote Fast Query Execution (cost=0.00..0.00 rows=0 width=0) Node/s: dn001, dn002 -&…

    2021/8/12 2:06:39 人评论 次浏览
  • [SQL]master..sysprocesses

    --https://docs.microsoft.com/zh-cn/sql/relational-databases/system-compatibility-views/sys-sysprocesses-transact-sql?view=sql-server-ver15 SELECT [spid] AS [SQL Server 会话 ID] -- ,[kpid] AS [Windows 线程 ID] --…

    2021/8/11 19:07:47 人评论 次浏览
  • [SQL]master..sysprocesses

    --https://docs.microsoft.com/zh-cn/sql/relational-databases/system-compatibility-views/sys-sysprocesses-transact-sql?view=sql-server-ver15 SELECT [spid] AS [SQL Server 会话 ID] -- ,[kpid] AS [Windows 线程 ID] --…

    2021/8/11 19:07:47 人评论 次浏览
  • Linux格式化硬盘以及格式化分区

    查看硬盘状态 查看硬盘挂载情况 df -h [root@centos8 ~]# df -h Filesystem Size Used Avail Use% Mounted on devtmpfs 7.8G 0 7.8G 0% /dev tmpfs 7.8G 0 7.8G 0% /dev/shm tmpfs 7.8G 249M 7.5G…

    2021/8/10 7:06:36 人评论 次浏览
  • Linux格式化硬盘以及格式化分区

    查看硬盘状态 查看硬盘挂载情况 df -h [root@centos8 ~]# df -h Filesystem Size Used Avail Use% Mounted on devtmpfs 7.8G 0 7.8G 0% /dev tmpfs 7.8G 0 7.8G 0% /dev/shm tmpfs 7.8G 249M 7.5G…

    2021/8/10 7:06:36 人评论 次浏览
  • C#8中的Range和Index(范围和索引)

    来源:https://note.guoqianfan.com/2021/07/13/Range-and-Index-in-csharpRange-范围 范围运算符范围运算符:..,它会生成一个Range对象。语法:{startIndex}..{endIndex}:包含startIndex,不包含endIndex限制:0 <= startIndex <= endIndex <= arr.Length,其…

    2021/8/8 20:06:28 人评论 次浏览
  • C#8中的Range和Index(范围和索引)

    来源:https://note.guoqianfan.com/2021/07/13/Range-and-Index-in-csharpRange-范围 范围运算符范围运算符:..,它会生成一个Range对象。语法:{startIndex}..{endIndex}:包含startIndex,不包含endIndex限制:0 <= startIndex <= endIndex <= arr.Length,其…

    2021/8/8 20:06:28 人评论 次浏览
  • linux shell世界之分界(cd操作)

    1. 命令格式:cd [目录名]2. 命令功能:切换当前目录至dirName3. 常用范例 例一:进入系统根目录 命令: cd / 输出: [root@localhost ~]# cd / 说明:进入系统根目录,上面命令执行完后通过ls命令看一下,当前目录已经到系统根目录了 命令: cd .. 或者 cd .. // 输…

    2021/8/7 7:09:33 人评论 次浏览
  • linux shell世界之分界(cd操作)

    1. 命令格式:cd [目录名]2. 命令功能:切换当前目录至dirName3. 常用范例 例一:进入系统根目录 命令: cd / 输出: [root@localhost ~]# cd / 说明:进入系统根目录,上面命令执行完后通过ls命令看一下,当前目录已经到系统根目录了 命令: cd .. 或者 cd .. // 输…

    2021/8/7 7:09:33 人评论 次浏览
  • 常量和变量以及标识符..

    常量:在程序中,运行过程中不会改变的数据 常量:整数常量,小数常量带小数点,字符常量,字符串常量"" 随便写 布尔常量(boolean):true false 空常量 null 代表数据不存在,不可以直接使用 变量:在程序中,运行过程中值会发生改变的数据 作用:储存数据,一次只能存储一…

    2021/8/6 23:08:22 人评论 次浏览
  • 常量和变量以及标识符..

    常量:在程序中,运行过程中不会改变的数据 常量:整数常量,小数常量带小数点,字符常量,字符串常量"" 随便写 布尔常量(boolean):true false 空常量 null 代表数据不存在,不可以直接使用 变量:在程序中,运行过程中值会发生改变的数据 作用:储存数据,一次只能存储一…

    2021/8/6 23:08:22 人评论 次浏览
  • angular 安装jq 引用外部js

    <script src="./assets/lib/jquery.min.js"></script><script src="./assets/lib/jigsaw.js"></script>在index.html全局直接引入然后使用的地方声明declare var $: any;// import * as $ from jquery;// import * as $ from…

    2021/8/6 6:06:32 人评论 次浏览
扫一扫关注最新编程教程