oper.sql
来自「关系型数据库 Postgresql 6.5.2」· SQL 代码 · 共 28 行
SQL
28 行
------------------------------------------------------------------------------- oper.sql--- test operators------ Copyright (c) 1994, Regents of the University of California---- $Id: oper.sql,v 1.1.1.1 1996/07/09 06:22:30 scrappy Exp $------------------------------------------------------------------------------- test creationcreate operator ##+ (leftarg=int4, rightarg=int4, procedure = int4pl);\gcreate operator ##+ (rightarg=int4, procedure=int4fac);\gcreate operator ##+ (leftarg=int4, procedure=int4inc);\gselect 4 ##+ 4;\gselect ##+ 4;\g-- why "select 4 ##+" does not work?select (4 ##+);\gdrop operator ##+(int4,int4);\gdrop operator ##+(none, int4);\gdrop operator ##+(int4, none);\g
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?