#include<stdio.h> #define maxsize 6 typedef int ElemType; typedef struct { ElemType data; int cur; } component; //1.创建备用链表 void reserverArr(component ...
分类:
其他好文 时间:
2020-07-15 01:21:11
阅读次数:
58
获取select的option值 $('#selectedSubject option').eq(0).val(); 获取select的选中option值 $('#selectedSubject option:selected').val(); 设置select的选中值 $("#selectedSu ...
分类:
Web程序 时间:
2020-07-14 18:51:17
阅读次数:
105
我的需求: select下拉联动,选择模板配置后,字段配置重新获取,此时要清空之前已选的字段 代码: <template> <div> <a-form class="dataForm" :form="form" :label-col="{ span: 5 }" :wrapper-col="{ spa ...
分类:
其他好文 时间:
2020-07-14 18:26:53
阅读次数:
184
-- 查询练习 -- 查询所有字段 -- select * from 表名; select * from students; -- 查询指定字段 -- select 列1,列2,... from 表名; select name,gender from students; -- 使用 as 给字段起别 ...
分类:
数据库 时间:
2020-07-14 16:47:06
阅读次数:
79
查询SELECT * FROM table A WHERE ( A.the_date, A.exponent_code, A.exponent_value ) IN ( SELECT the_date, exponent_code, exponent_value FROM table GROUP B ...
分类:
数据库 时间:
2020-07-14 16:31:08
阅读次数:
90
来源:https://www.jb51.net/article/167630.htm /** * @Auther: IT贱男 * @Date: 2019/6/10 14:40 * @Description: User对象持久层 */ public interface UserMapper exten ...
分类:
其他好文 时间:
2020-07-14 16:21:15
阅读次数:
57
想到是否包含,就想起来in,like查询了,先说一下这俩的区别,这是表字段和数据 Like查询 首先可能用的最多的LIKE 模糊查询,这样的数据不太精确,如果姓名有 “西贝小小凤1,西贝小小凤2” 这样的也会查出来,数据不太准确 select * from table where field lik ...
分类:
数据库 时间:
2020-07-14 15:04:08
阅读次数:
124
需求:table组件的checkbox进行数据重显,默认显示已选中数据 // html <Table ref="multipleTable" :data="dataArr" > <el-table-column type="selection" align="center"></el-table-c ...
分类:
其他好文 时间:
2020-07-14 15:00:28
阅读次数:
69
1、mycat的基本介绍及安装1、前置知识1、分布式系统? 分布式系统是指其组件分布在网络上,组件之间通过传递消息进行通信和动作协调的系统。它的核心理念是让多台服务器协同工作,完成单台服务器无法处理的任务,尤其是高并发或者大数据量的额任务。它的特点是: ? **透明性:**分布式系统对于用户是透明的 ...
分类:
其他好文 时间:
2020-07-14 13:42:09
阅读次数:
36
熟悉Spring Boot、Spring Cloud等框架 熟悉MySQL、Oracle、ES、Redis等数据库 nginx负载均衡算法,及其差异1.轮询2.ip_hash3.加权4.5.6. mysql或oracle查看数据库正在执行的sql的思路或方法SELECT SE.SID,OPNAME, ...
分类:
其他好文 时间:
2020-07-14 00:57:56
阅读次数:
113