sqlfunc.hlp
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. .pgaw:Help.f.t insert end 
  2. "SQL functionsnn" {title} 
  3. "COALESCE(list)" {bold} " 
  4. return first non-NULL value in list 
  5. Example:
  6. COALESCE(a2, c2 + 5, 0)
  7. " {} "IFNULL(input,non-NULL substitute)" {bold} " 
  8. return second argument if first is NULL 
  9. Example:
  10. IFNULL(c1, 'N/A')
  11. " {} "CASE WHEN expr THEN expr [...] ELSE expr END" {bold} " 
  12. return expression for first true clause 
  13. Example:
  14. CASE WHEN c1 = 1 THEN 'match' ELSE 'no match' END 
  15. " {} 
  16. "PostgreSQL functionsn" {link pgfunctions} 
  17. "Next - mathematical functions" {link mathfunc}