Data type: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
Line 30: Line 30:
** DECIMAL(10,2)<ref> [http://stackoverflow.com/questions/628637/best-data-type-for-currency sql - Best Data Type for Currency - Stack Overflow]{{access | date=2012-03-07}} </ref>
** DECIMAL(10,2)<ref> [http://stackoverflow.com/questions/628637/best-data-type-for-currency sql - Best Data Type for Currency - Stack Overflow]{{access | date=2012-03-07}} </ref>
** ex:  
** ex:  
** range/limit: 99999999.99 ~ 0.00
** range/limit: 0.00 ~ 99999999.99


<pre> (left blank intentionally)
<pre> (left blank intentionally)

Revision as of 13:51, 8 March 2012

data type

types of data

  • IP(v4):
    • varchar(15)
    • ex: 255.255.255.255 [1]
    • range/limit:
  • IP range - Classless inter-domain routing (CIDR)[2]
    • 12 or 24 bytes (IPv4 and IPv6 networks)[3]
    • ex: 69.208.0.0/32
  • Chinese name:
    • 最長姓名有13個字 [4]
  • unix timestamp:
    • bigint(10) ;
    • ex: 1328664539
    • range/limit:
  • School ID defined by MOE at Taiwan / 學校代碼[5]
    • integer: 4(university) ~ 6
    • ex: 0001(國立政治大學)、373607(臺北市立華江國小)。前面可能有零。
    • range/limit:
  • 經緯度 (經度,緯度):
    • DECIMAL(18,12)[6] or FLOAT( 10, 6 )[7]
    • ex: 37.401724,-122.114646
    • range/limit:
  • 價錢/金額
    • DECIMAL(10,2)[8]
    • ex:
    • range/limit: 0.00 ~ 99999999.99
 (left blank intentionally)
* data
** data type
** ex:
** range/limit:

references

further reading