2009年8月31日 星期一

標籤(DIV) 要取得屬性(name) 另外的方法

id = test_div_id
name = test_div_name
標籤(DIV) 要取得屬性(name) 另外的方法

2009年8月27日 星期四

SQL 語法統計年,月,季

引用:[SQL]如何下SQL語法統計年,月,季的資料
資料表如下:
account loginTime
five 2008-06-05 10:24:12
... ...

比較笨的方法是一行一行讀出後再用程式做整理
比較聰明的方法是用SQL語法直接分年,月,季取出資料來
假設我們要查詢的時間範圍是2008-01-01~2008-12-31
用MySQL環境之下所下的指令為
年:
select year(logintime) as year,count(distinct(account)) as total
from logintime
WHERE logintime between '2008-01-01' and '2008-12-31'
group by year(logintime)
year total
2008 1

季:
select year(logintime) as year,CEILING(month(logintime)/3) as season, count(distinct(account)) as total
from logintime
WHERE logintime between '2008-1-01' and '2008-12-31'
group by year(logintime),CEILING(month(logintime)/3)
year season total
2008 2 1

月:
select year(logintime) as year, month(logintime) as month, count(distinct(account)) as total
from logintime
WHERE logintime between '2008-1-01' and '2008-12-31'
group by year(logintime),month(logintime)
year month total
2008 6 1

mysql function解說:
1.distinct :表示不取重複資料
2.CEILING :表示無條件進位成整數
3.year:表示取年
4.month:表示取月
5.count:表示取筆數

2009年8月26日 星期三

透明

Firefox3.Chrome2.Safari3
document.getElementById('opacity_test').style.opacity='0.3';

IE6
document.getElementById('opacity_test').style.filter='alpha(opacity=30)';



drag&drop 這篇也有用透明

2009年8月17日 星期一

DNS 常用型態解釋

常用型態解釋

www.dyndns.com chair.blogsite.org 轉址到 chair-chair.blogspot.com
twbbs.org chair.twgg.org
chair.twgogo.org
godaddy cgi.tw dns service
freedns chair.cgi.tw dns service