⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 create_aggregate.sql

📁 关系型数据库 Postgresql 6.5.2
💻 SQL
字号:
---- AGGREGATE DEFINITIONS---- all functions CREATEdCREATE AGGREGATE newavg (   sfunc1 = int4pl, basetype = int4, stype1 = int4,    sfunc2 = int4inc, stype2 = int4,   finalfunc = int4div,   initcond1 = '0', initcond2 = '0');-- sfunc1 (value-dependent) only CREATE AGGREGATE newsum (   sfunc1 = int4pl, basetype = int4, stype1 = int4,    initcond1 = '0');-- sfunc2 (value-independent) only CREATE AGGREGATE newcnt (   sfunc2 = int4inc, basetype = int4, stype2 = int4,    initcond2 = '0');

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -