积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部数据库(9)Firebird(9)

语言

全部英语(6)俄语(2)德语(1)

格式

全部PDF文档 PDF(9)
 
本次搜索耗时 0.096 秒,为您找到相关结果约 9 个.
  • 全部
  • 数据库
  • Firebird
  • 全部
  • 英语
  • 俄语
  • 德语
  • 全部
  • PDF文档 PDF
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Firebird 2.5 LangRef Update Russian

    поддерживать запросы с дополнительными фильтрами, такими, как эти: SELECT AU.MAKE, AU.MODEL, AU.WEIGHT, AU.PRICE, AU.IN_STOCK FROM AUTOMOBILES AU WHERE (AU.MAKE = :MAKE OR :MAKE IS NULL) AND (AU.MODEL Firebird для подготовки, он должен быть преобразован в такую форму: SELECT AU.MAKE, AU.MODEL, AU.WEIGHT, 35 Руководство по языку SQL AU.PRICE, AU.IN_STOCK FROM AUTOMOBILES AU WHERE (AU.MAKE = ? OR null”. Эта последняя задача может быть решена путем приведения типов: SELECT AU.MAKE, AU.MODEL, AU.WEIGHT, AU.PRICE, AU.IN_STOCK FROM AUTOMOBILES AU WHERE (AU.MAKE = ? OR CAST(? AS TYPE OF COLUMN AU
    0 码力 | 364 页 | 1.45 MB | 1 年前
    3
  • pdf文档 Firebird Null Guide: NULL behaviour and pitfalls in Firebird SQL

    use is e.g. select avg( nullif( Weight, -1 ) ) from FatPeople which will give you the average weight of the FatPeople population, without counting those with weight -1. (Remember that aggregate functions indicate “weight unknown” because you weren’t comfortable with NULLs. After reading this guide, you may feel brave enough to give the command: update FatPeople set Weight = nullif( Weight, -1 ) Now
    0 码力 | 69 页 | 479.63 KB | 1 年前
    3
  • pdf文档 Firebird 2.5 Language Reference

    and position <> 'Manager'; select name from wrestlers where region = 'Europe' and weight > all (select weight from shot_putters where region = 'Africa'); select id, name from input. Example select avg( nullif(Weight, -1) ) from FatPeople This will return the average weight of the persons listed in FatPeople, excluding those having a weight of -1, since AVG skips NULL data data. Presumably, -1 indicates “weight unknown” in this table. A plain AVG(Weight) would include the -1 weights, thus skewing the result. See also COALESCE(), DECODE(), IIF(), CASE Chapter 8. Built-in
    0 码力 | 521 页 | 2.30 MB | 1 年前
    3
  • pdf文档 firebird language reference 30 rus

    AND position <> 'Manager'; SELECT name FROM wrestlers WHERE region = 'Europe' AND weight > ALL (SELECT weight FROM shot_putters WHERE region = 'Africa'); SELECT id, name FROM запрос вернёт среднее значение поля weight по таблице, за исключением строк, где он не указан (равен -1). Если бы не было этой функции простой оператор avg(weight) вернул бы некорректное значение значение */ SELECT AVG(NULLIF(weight, -1)) FROM cargo; См. также: COALESCE, CASE. Агрегатные функции Агрегатные функции выполняют вычисление на наборе значений
    0 码力 | 719 页 | 3.98 MB | 1 年前
    3
  • pdf文档 firebird 40 language reference

    and position <> 'Manager'; select name from wrestlers where region = 'Europe' and weight > all (select weight from shot_putters where region = 'Africa'); select id, name from NULLIF Example select avg( nullif(Weight, -1) ) from FatPeople This will return the average weight of the persons listed in FatPeople, excluding those having a weight of -1, since AVG skips NULL data data. Presumably, -1 indicates “weight unknown” in this table. A plain AVG(Weight) would include the -1 weights, thus skewing the result. See also COALESCE(), DECODE(), IIF(), CASE 8.10. Special Functions
    0 码力 | 778 页 | 3.43 MB | 1 年前
    3
  • pdf文档 firebird wire protocol

    = 2) Chapter 3. Databases 6 Int32 Maximum type (e.g. ptype_batch_send = 3) Int32 Preference weight (e.g. 2) Server Int32 Operation code If operation equals op_accept: Int32 Protocol version
    0 码力 | 40 页 | 213.15 KB | 1 年前
    3
  • pdf文档 firebird 5 quickstartguide

    (Street = 'Main Street', Number = '888'); alter user benny tags (shoesize = '8', hair = 'blond', drop weight); alter current user set password 'SomethingEvenMoreSecretThanThis'; alter user dubya set inactive;
    0 码力 | 49 页 | 396.21 KB | 1 年前
    3
  • pdf文档 Firebird 2.1.5 Installation

    V.2.1.2 release, efforts have been made to improve the options, document them and to reduce the “weight” of installations, particularly for Windows Embedded deployments. Please refer to the later section
    0 码力 | 46 页 | 217.89 KB | 1 年前
    3
  • pdf文档 firebird 30 sprachreferenz

    and position <> 'Manager'; select name from wrestlers where region = 'Europe' and weight > all (select weight from shot_putters where region = 'Africa'); select id, name from gleich dem zweiten. In diesem Fall wird NULL zurückgegeben. NULLIF-Beispiel select avg( nullif(Weight, -1) ) from FatPeople Dadurch wird das durchschnittliche Gewicht der in FatPeople aufgelisteten "NULL"-Daten überspringt. Vermutlich bedeutet -1 in dieser Tabelle “Gewicht unbekannt”. Ein einfaches AVG(Weight) würde die -1 Gewichte enthalten, wodurch das Ergebnis verzerrt wird. Siehe auch COALESCE(), DECODE()
    0 码力 | 701 页 | 3.12 MB | 1 年前
    3
共 9 条
  • 1
前往
页
相关搜索词
Firebird2.5LangRefUpdateRussianNullGuideNULLbehaviourandpitfallsinSQLLanguageReferencefirebirdlanguagereference30rus40wireprotocolquickstartguide2.1Installationsprachreferenz
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩