上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 30 下一页
摘要: SQL Count()函数: SQL COUNT(column_name)语法:COUNT(column_name)函数返回指定列的值得数目(NULL不计入) select count(column_name) from table_name SQL COUNT(DISTINCT column_na 阅读全文
posted @ 2016-03-05 11:43 江湖小妞 阅读(293) 评论(0) 推荐(0) 编辑
摘要: SQL INNER JOIN 关键字 在表中存在至少一个匹配时,INNER JOIN关键字返回行。 INNER JIN关键字语法 SELECT column_name(s) FROM table_name1 INNER JOIN table_name2 ON table_name1.column_n 阅读全文
posted @ 2016-03-05 11:07 江湖小妞 阅读(194) 评论(0) 推荐(0) 编辑
摘要: Question: Given a Weather table, write a SQL query to find all dates' Ids with higher temperature compared to its previous (yesterday's) dates. +----- 阅读全文
posted @ 2016-03-05 10:42 江湖小妞 阅读(198) 评论(0) 推荐(0) 编辑
摘要: SQL对大小写不敏感! SQL DML和DDL:可以把SQL分为两个部分:数据操作语言(DML)和数据定义语言(DDL) SQL(结构化查询语言)是用于执行查询的语法。但是SQL语言也包含用于更新、插入和删除记录的语法。 查询和更新指令构成了SQL的DML部分: select,update,dele 阅读全文
posted @ 2016-03-05 10:26 江湖小妞 阅读(436) 评论(0) 推荐(0) 编辑
摘要: Question: Given a binary tree, return the postorder traversal of its nodes' values. For example:Given binary tree {1,#,2,3}, 1 \ 2 / 3 return [3,2,1]. 阅读全文
posted @ 2016-03-03 10:13 江湖小妞 阅读(175) 评论(0) 推荐(0) 编辑
摘要: Question: Given preorder and inorder traversal of a tree, construct the binary tree. Note:You may assume that duplicates do not exist in the tree. Ana 阅读全文
posted @ 2016-03-02 17:26 江湖小妞 阅读(310) 评论(0) 推荐(0) 编辑
摘要: Question: Given a binary tree, determine if it is a valid binary search tree (BST). Assume a BST is defined as follows: The left subtree of a node con 阅读全文
posted @ 2016-03-02 14:02 江湖小妞 阅读(225) 评论(0) 推荐(0) 编辑
摘要: Question: Given a binary tree, return the inorder traversal of its nodes' values. For example:Given binary tree {1,#,2,3}, 1 \ 2 / 3 return [1,3,2]. N 阅读全文
posted @ 2016-03-02 09:30 江湖小妞 阅读(199) 评论(0) 推荐(0) 编辑
摘要: Question: Given a binary tree, return the preorder traversal of its nodes' values. For example:Given binary tree {1,#,2,3}, 1 \ 2 / 3 return [1,2,3]. 阅读全文
posted @ 2016-03-01 21:04 江湖小妞 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 台式机又出问题了。目测是电源问题,维修哥哥你快来。。 无奈这几天还要写文档画流程图,只能借助在线工具了。。 目前我们使用的流程图制作软件大体有RFFLOW、FLOW CHARTING、VISIO三种,可是它们的体积和资源占用情况很大,操作复杂,有没有简单易用不需安装的流程图制作软件呢?下面我给大家推 阅读全文
posted @ 2016-02-26 09:15 江湖小妞 阅读(343) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 30 下一页