2018 09 30 结构体中成员变量地址是连续的,结构体用于描述记录。 Create a struct Create a struct pointer Create a struct array Create an union ...
分类:
编程语言 时间:
2018-09-30 11:26:00
阅读次数:
155
员工信息表程序,实现增删改查操作 可进行模糊查询,语法至少支持下面3种: select name,age from staff_table where age > 22 select * from staff_table where dept = "IT"select * from staff_ta ...
分类:
编程语言 时间:
2018-08-24 10:43:51
阅读次数:
175
1、从List<Staff>筛选符合条件的List<String>:List<Staff>staffListtemp=Lists.newArrayList();List<String>staffIdList=staffListtemp.stream().filter(staff->deptIdSet.contains(staff.getDept
分类:
编程语言 时间:
2018-08-23 11:23:11
阅读次数:
213
#include <stdio.h>#include <string.h>void main(){ struct staff { char name[20]; char department[20]; int salary; int cost; }worker[3]= { {"Xu_Guo","pa ...
分类:
微信 时间:
2018-08-20 19:46:42
阅读次数:
239
1.用户的安全任务快捷管理# smit security Users Groups passwords Login Controls Roles2.安全相关记录文件/etc/motd 公告文件,登录显示/et
分类:
其他好文 时间:
2018-08-09 15:46:27
阅读次数:
178
1、Action Xadmin 默认启用了批量删除的事件,代码见xadmin-->plugins-->action.py DeleteSelectedAction 如果要为list列表添加其他事件,可自定义Action: 1)自定义一个Action类,继承BasicActiveView from x ...
分类:
其他好文 时间:
2018-08-07 17:32:36
阅读次数:
3585
import os file_name = '员工信息表' noun_list = ['staff_id', 'name', 'age', 'phone', 'dept', 'enroll_date'] def file_operation(file): ''' 先进行文件操作,把文件内容加载到内存... ...
分类:
其他好文 时间:
2018-07-31 15:23:25
阅读次数:
162
这是测试 1233333333333333 这是测试 1233333333333333 def upd_sql(self): print(self.sql) ta_dql = self.sql.find("staff_table") se_dql = self.sql.find("SET") w_d ...
分类:
其他好文 时间:
2018-07-24 17:50:43
阅读次数:
162
1. 在where 从句,group by 从句,order by 从句,on 从句中出现的列; 2. 索引字段越小越好; 3. 离散度大的列放到联合索引的前面;比如: select * from payment where staff_id = 2 and customer_id = 236; 针 ...
分类:
数据库 时间:
2018-07-10 21:37:26
阅读次数:
345