• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






棉花糖弹棉花

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理
1 2 3 4 下一页

[置顶] doors dxl 遍历object 查找
摘要: Module m = current; //m = edit(“xxx”) Object o for o in m do { string sht = o.”shtName” Buffer bf=create bf = sht string tmp=“Til” int index=contains( 阅读全文
posted @ 2018-05-21 18:32 棉花糖弹棉花 阅读(397) 评论(0) 推荐(0)
 

2018年6月20日

redis配置
摘要: 阅读全文
posted @ 2018-06-20 11:43 棉花糖弹棉花 阅读(80) 评论(0) 推荐(0)
 
redis常用数据类型与命令
摘要: 注意:LPUSH 和LPOP按照栈进行操作,RPUSH和RPOP按照队列进行操作 zremrangebyscore key score开始 score结束//根据score删除 zremrangebyrank key 索引开始 索引结束//根据索引删除 阅读全文
posted @ 2018-06-20 11:14 棉花糖弹棉花 阅读(128) 评论(0) 推荐(0)
 
redis数据库介绍(NoSql数据库)
摘要: 阅读全文
posted @ 2018-06-20 10:56 棉花糖弹棉花 阅读(170) 评论(0) 推荐(0)
 
bcb6重启应用程序
摘要: 在工程的cpp文件中WinMain还是得最后添加如下的代码(其中g_blsRunAgain为bool类型的全局变量,在需求重启的时候先将g_blsRunAgain置为true,再将程序关闭,之后就会重启): // 重启自身 if(g_blsRunAgain) { AnsiString strPath 阅读全文
posted @ 2018-06-20 10:06 棉花糖弹棉花 阅读(123) 评论(0) 推荐(0)
 

2018年6月13日

MySQL 关联查询  外连接 { LEFT| RIGHT } JOIN
摘要: 左外连接: (以左表为基准)两张表做连接的时候,在连接条件不匹配的时候留下左表中的数据,而右表中的数据以NULL填充例:使用左连接把学生的数据全取出来,该学生没有学院信息的用NULL填充 mysql> select * from student left join department -> on 阅读全文
posted @ 2018-06-13 22:27 棉花糖弹棉花 阅读(223) 评论(0) 推荐(0)
 
MySQL 关联查询 内连接
摘要: 内连接 [INNER| CROSS] JOIN无条件内连接:无条件内连接,又名交叉连接/笛卡尔连接第一张表种的每一项会和另一张表的每一项依次组合#例:mysql> select * from student inner join department;有条件内连接:在无条件的内连接基础上,加上一个O 阅读全文
posted @ 2018-06-13 22:25 棉花糖弹棉花 阅读(95) 评论(0) 推荐(0)
 
MySql子查询
摘要: 出现在其他SQL语句内的SELECT字句。(select 中 嵌套 select ) #求出学生的平均年龄select avg(age) from stu_details; #查找出大于平均年龄的数据mysql> select * from stu_details where age >18.25; 阅读全文
posted @ 2018-06-13 22:22 棉花糖弹棉花 阅读(112) 评论(0) 推荐(0)
 
MySql单表查询
摘要: 1.查询所有记录select * from department;select * from student;select * from student_detail; 2.查询选中列记录 3.查询指定条件下的记录select s_name from student where s_id>2; 4. 阅读全文
posted @ 2018-06-13 22:16 棉花糖弹棉花 阅读(129) 评论(0) 推荐(0)
 
表级操作语句
摘要: 显示所有表: show tables;创建表: create table tbl_name(create_definition,...);显示表创建信息: show create table tb_name; desc tb_name;删除: drop table tb_name; 阅读全文
posted @ 2018-06-13 21:55 棉花糖弹棉花 阅读(114) 评论(0) 推荐(0)
 
库级操作语句
摘要: 显示所有库: show databases;创建库: create database [if not exists] db_name;显示库创建信息: show create database db_name;删除库: drop database [if exists] db_name; 切换当前数 阅读全文
posted @ 2018-06-13 21:54 棉花糖弹棉花 阅读(94) 评论(0) 推荐(0)
 
1 2 3 4 下一页