摘要:
-- 查找两个表中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 阅读全文
用贝塞尔曲线实现水波效果
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 = '... 阅读全文