查询分类单表查询:简单查询多表查询:连接查询联合查询:多个查询结果汇总查询的组成投影查询:挑选要显示的字段select
array1,array2,... from tb_name;选择查询:挑选符合条件的行select * from tb_name
where-clausewhere-clause...
分类:
数据库 时间:
2014-05-14 03:08:33
阅读次数:
440
//需求:由于项目刚上传,没有票数,为了表现出一定的人气,需要在一开始把各项目的票数赋一个值 ,
但每个项目不能一样,否则容易看出问题,呵呵 。
DECLARE @Id varchar(50)
DECLARE My_Cursor CURSOR --定义游标
FOR (SELECT Id FROM dbo.kinpanAwardProject where session=9) --查出...
分类:
数据库 时间:
2014-05-13 07:25:04
阅读次数:
405
用过PHP的朋友都知道,PHP中变量的使用灵活方便,特别是能在字符串中方便实现变量名-值变换,使得整个PHP代码更显简洁优美。比如一条更新数据库的SQL语句只需写成:"update users set password='$password', group=$group, name='$username' where account='$account'",其中的$password、$group、...
分类:
Web程序 时间:
2014-05-12 15:09:13
阅读次数:
358
今天遇到的问题,包明明存在却突然报找不到包的错误,重启eclipse无法解决,Refresh也不行。最后是通过Project-Clean解决掉的。上面是一篇文章,列举了一系列的方法。
Where ClassName was my imported class. I’m using the MyEclipse Workbench 5.5.1 on Eclipse 3.2. Here are...
分类:
系统相关 时间:
2014-05-12 14:33:14
阅读次数:
471
在SQL中获取最后的一个id 只需要加上where条件对id进行排序就可以了但是在PHP中
有一种最新的方法 使用mysql_insert_id();就可以获得最大的id .
分类:
数据库 时间:
2014-05-12 10:37:16
阅读次数:
351
查询博客中相同文章类别总共有多少文章
T_Content 博客表
T_ContentType 博客类别表
string sql = "select (select count(*) from T_Content where FTypeId=T.FID) as num from T_ContentType AS T"...
分类:
其他好文 时间:
2014-05-12 07:00:52
阅读次数:
294
Given a singly linked list where elements are
sorted in ascending order, convert it to a height balanced BST.1.
将LinkedList的值保存到一个数组中,转化成Convert Sorte...
分类:
其他好文 时间:
2014-05-12 05:53:09
阅读次数:
367
offset大的时候的比较SELECT * FROM persons LIMIT
200000,10;耗时0.078sSELECT *FROM persons WHERE id>=(SELECT id FROM persons
ORDER BY id LIMIT 200000,1) LIMIT 10...
分类:
数据库 时间:
2014-05-11 16:23:57
阅读次数:
322
1:as给表另外命名2:desc倒序3:order
by分组4:select*form表名where条件
分类:
其他好文 时间:
2014-05-10 06:44:37
阅读次数:
317
需要每隔一段时间选取最老的商户更新时间戳:
update DP_Shop set DP_Shop.LastDate = now() where DP_Shop.ShopId in (select ShopId from DP_Shop order by LastDate limit 5);
ERROR 1235 (42000): This version of MySQL doesn't ...
分类:
数据库 时间:
2014-05-10 04:22:58
阅读次数:
423