
SQL
文章平均质量分 76
victor950118
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
SQL单表查询、多表查询、嵌套查询
create table Emp (eid int primary key, ename char(9), salary real ); create table Dept (did int primary key, dname char(9), managerid int, foloornum int ); create table Works (eid int, did i转载 2015-03-26 15:43:19 · 4278 阅读 · 0 评论 -
mysqli语法
连接测试: <?php //创建对象并打开连接,最后一个参数是选择的数据库名称 $mysqli = new mysqli('localhost','root','YES','db1'); //检查连接是否成功 if (mysqli_connect_errno()){ //注意mysqli_connect_error()新特性 die('Unable to connect!').原创 2015-04-13 12:46:53 · 1385 阅读 · 0 评论 -
最后的A4纸
正面: 反面: 然而两面都完美避开考试范围原创 2015-05-04 13:18:46 · 357 阅读 · 0 评论 -
DBMS知识点复习
无损连接和有损连接: 判断方法1: 判断方法2与栗子: 3NF和BCNF 判断方法和栗子:原创 2015-05-01 14:33:16 · 384 阅读 · 0 评论 -
cross join & natural join & inner join & left outer join & right outer join & full outer join
Assume 2 tablesA and B has values with the 1stcolumn of each table as the common column , in the following: Table A: 2 3 Table B: 1 A原创 2015-05-01 17:26:04 · 515 阅读 · 0 评论