一、用户变量:针对于当前会话或连接有效声明并初始化:a:SET @ 用户变量名 = 值(方式一)b:SET @用户变量名:值(方式二)c:SELECT @用户变量名:= 值(方式三)tips:注意符号 更改值:可以和声明一样的语法;a:SET @ 用户变量名 = 值(方式一)b:SET @用户变量名 ...
分类:
数据库 时间:
2021-04-10 12:55:25
阅读次数:
0
1.按照官网的流程输入命令https://qgis.org/en/site/forusers/alldownloads.html#debian-ubuntu 出现 1 (base) server123@ubuntu:~$ sudo apt-get install qgis 2 Reading pac ...
分类:
系统相关 时间:
2021-04-09 13:42:27
阅读次数:
0
point light 的volumtric camera 在volumtric外面 1.渲染volumetric的backface(渲染球靠近camera的一半) 深度测试 留下远的 绿色 2.渲染volumtric的frontface 深度测试留下近的 绿色 3. 在1和2都通过的地方 sten ...
分类:
其他好文 时间:
2021-04-09 13:06:22
阅读次数:
0
1.设计一个简易的地铁计费系统 乘坐地铁需要记录乘坐时间,离开时间,费用扣款,并且显示详细的信息 2.(乘坐编号,kaishi乘坐时间,Onuse是否使用) 数据库连接代码:` package wbsys.entity; import java.sql.*; public class Lianjie ...
分类:
其他好文 时间:
2021-04-09 13:00:20
阅读次数:
0
目前已经发现cps 打不上去,top中sys偏高, perf 以及strace 发现时accpet频繁的系统调用! 整体分析过程见:48核cps性能低于8核-debug cps ...
分类:
其他好文 时间:
2021-04-08 13:52:47
阅读次数:
0
W: GPG error: http://mirrors.cloud.aliyuncs.com/ubuntu xenial-backports InRelease: Could not execute 'apt-key' to verify signature (is gnupg installed ...
分类:
其他好文 时间:
2021-04-08 13:43:02
阅读次数:
0
1、为table添加 :header-cell-style="rowClass" 2、通过rowClass 将要跨列的columnIndex 添加属性 colSpan : 2 被合并的列隐藏 const tableHeaderStyle = { background: '#305496', colo ...
分类:
其他好文 时间:
2021-04-08 13:25:19
阅读次数:
0
大整数BigInteger package com.zmd.common_class_libraries; import java.math.BigInteger; /** * @ClassName BigNumberExample * @projectName: object1 * @author ...
分类:
编程语言 时间:
2021-04-08 13:23:52
阅读次数:
0
package main import ( "log" ) type meta struct { name string age int } func (m *meta) copy(dest *meta) { *dest = *m } func main() { a := meta{name:"aa ...
分类:
编程语言 时间:
2021-04-07 11:39:03
阅读次数:
0
#include<bits/stdc++.h>using namespace std;int maze [5][5] = {0, 1, 0, 0, 0,0, 1, 0, 1, 0,0, 0, 0, 0, 0,0, 1, 1, 1, 0,0, 0, 0, 1, 0,};typedef struct { ...
分类:
其他好文 时间:
2021-04-07 11:33:01
阅读次数:
0