代码改变世界

阅读排行榜

SQL 的简单命令(增删改查)

2016-11-28 11:14 by 甘雨路, 910 阅读, 收藏,
摘要: -- 查找两个表中ID相等的select a.id, a.name,b.math from stu a,scores b where a.id = b.id -- 右外连接select b.id, a.name,b.math from stu a,scores b where a.id(+) = b 阅读全文

iOS 设置导航栏的颜色和导航栏上文字的颜色

2015-12-25 14:33 by 甘雨路, 897 阅读, 收藏,
摘要: #import <UIKit/UIKit.h> @interface AppDelegate : UIResponder <UIApplicationDelegate> @property (strong, nonatomic) UIWindow *window; @end #import "App 阅读全文

hibernate 一对一(级联关系)

2017-03-27 14:32 by 甘雨路, 889 阅读, 收藏,
摘要: hibernate 核心配置文件 实体类与数据库表映射关系配置文件 阅读全文

用贝塞尔曲线实现水波效果

2015-06-26 16:49 by 甘雨路, 887 阅读, 收藏,
摘要: // AppDelegate .h 文件 #import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; @end ... 阅读全文

PLSQL 的简单命令之二

2016-11-29 18:44 by 甘雨路, 881 阅读, 收藏,
摘要: --1. 查询工资大于12000的员工姓名和工资 select first_name,last_name,salary from employees where salary > 12000 --2. 查询员工号为176的员工的姓名和部门号 select first_name,last_name,department_id from employees where job_id = '... 阅读全文
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 44 下一页