Facebook Sharer
选择您要替换的背景颜色:
【农历新年】背景图片:
个性化设定
 注册  找回密码
楼主: goodday
打印 上一主题 下一主题

我的开发天空 [很惊人的 asp.net 教学] 十八页

 关闭 [复制链接]

13

主题

0

好友

2113

积分

白金长老

Rank: 10

101#
发表于 2007-10-31 08:56 PM |只看该作者
考我近来的难题

一条 t-sql  留 最后1000 条 多的delete


回复

使用道具 举报

7

主题

1

好友

5108

积分

一流名嘴

Rank: 12Rank: 12Rank: 12

102#
发表于 2007-10-31 10:21 PM |只看该作者
原帖由 goodday 于 2007-10-31 08:56 PM 发表
考我近来的难题

一条 t-sql  留 最后1000 条 多的delete



使用DELETE, ORDER BY 和 LIMIT 1限制刪除即可


回复

使用道具 举报

3

主题

0

好友

2953

积分

白金长老

Rank: 10

103#
发表于 2007-10-31 10:31 PM |只看该作者
原帖由 goodday 于 2007-10-31 08:47 PM 发表
好久没来
上面的两大高手过招

大家快排排坐,看程式~~~~

我也发招

Program to compute

static int Fibonacci (int x)
{
   Console.WriteLine ("x = {0}", x);
   if (x  



我也来一个:

fibonacci.c
  1. #include <stdio.h>

  2. main()
  3. {
  4.         int n, i;
  5.        
  6.         printf("Input: ");
  7.         scanf("%d", &n);
  8.         printf("Fibonacci sequences: %d\n", n);

  9.         for (i = 0; i <= n; i++)
  10.         {
  11.                 printf("%d", f(i));
  12.                 if (i <= n - 1) printf(", ");
  13.         }
  14.         printf("\n");
  15. }

  16. int f(int n)
  17. {
  18.         if (n <= 1) return(n);
  19.         return(f(n - 1) + f(n - 2));
  20. }
复制代码




dhilip89@dhilip89-desktop:~$ gcc '/home/dhilip89/Desktop/fibonacci.c' -o fibonacci.out
dhilip89@dhilip89-desktop:~$ '/home/dhilip89/fibonacci.out'
Input: 20
Fibonacci sequences: 20
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584, 4181, 6765


回复

使用道具 举报

13

主题

0

好友

2113

积分

白金长老

Rank: 10

104#
发表于 2007-10-31 10:37 PM |只看该作者
"Delete from AuditLog where LogNumber not in (select Top 1000 LogNumber from AuditLog order by LogNumber desc)"


回复

使用道具 举报

7

主题

1

好友

5108

积分

一流名嘴

Rank: 12Rank: 12Rank: 12

105#
发表于 2007-10-31 10:50 PM |只看该作者
原帖由 goodday 于 2007-10-31 10:37 PM 发表
"Delete from AuditLog where LogNumber not in (select Top 1000 LogNumber from AuditLog order by LogNumber desc)"



最後1000條的話就不用選擇最高的LogNumber, 而且最好是使用所有資料庫都支援的sql寫法, 這樣比較有伸縮性.


回复

使用道具 举报

13

主题

0

好友

2113

积分

白金长老

Rank: 10

106#
发表于 2007-10-31 11:10 PM |只看该作者
番茄兄  我的Fibonacci 错咯  


回复

使用道具 举报

3

主题

0

好友

2953

积分

白金长老

Rank: 10

107#
发表于 2007-10-31 11:15 PM |只看该作者
原帖由 goodday 于 2007-10-31 11:10 PM 发表
番茄兄  我的Fibonacci 错咯  


是少了Loop吧?


回复

使用道具 举报

13

主题

0

好友

2113

积分

白金长老

Rank: 10

108#
发表于 2007-10-31 11:25 PM |只看该作者
那个是要循环几次才会到0以下。。。


[ 本帖最后由 goodday 于 2007-10-31 11:29 PM 编辑 ]


回复

使用道具 举报

13

主题

0

好友

2113

积分

白金长老

Rank: 10

109#
发表于 2007-10-31 11:31 PM |只看该作者
Dhilip89 你没讲我会继续用错


回复

使用道具 举报

7

主题

1

好友

5108

积分

一流名嘴

Rank: 12Rank: 12Rank: 12

110#
发表于 2007-10-31 11:33 PM |只看该作者
如果我要計算500000000的fibonacci, int就會爆了


回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

JBTALKS.CC |联系我们 |隐私政策 |Share

GMT+8, 2024-11-18 11:39 PM , Processed in 0.096095 second(s), 20 queries .

Powered by Discuz! X2.5

© 2001-2012 Comsenz Inc.

Ultra High-performance Dedicated Server powered by iCore Technology Sdn. Bhd.
Domain Registration | Web Hosting | Email Hosting | Forum Hosting | ECShop Hosting | Dedicated Server | Colocation Services
本论坛言论纯属发表者个人意见,与本论坛立场无关
Copyright © 2003-2012 JBTALKS.CC All Rights Reserved
合作联盟网站:
JBTALKS 马来西亚中文论坛 | JBTALKS我的空间 | ICORE TECHNOLOGY SDN. BHD.
回顶部