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

📄 zh_tw.po

📁 PostgreSQL 8.1.4的源码 适用于Linux下的开源数据库系统
💻 PO
📖 第 1 页 / 共 5 页
字号:
# sql_help.h:157#: sql_help.h:157msgid "define a new user group"msgstr "建立新的群組"# sql_help.h:158#: sql_help.h:158msgid """CREATE GROUP name [ [ WITH ] option [ ... ] ]\n""\n""where option can be:\n""\n""     SYSID gid\n""   | USER  username [, ...]"msgstr ""# sql_help.h:161#: sql_help.h:161msgid "define a new index"msgstr "建立新的索引"# sql_help.h:162#: sql_help.h:162msgid """CREATE [ UNIQUE ] INDEX name ON table [ USING method ]\n""    ( { column | ( expression ) } [ opclass ] [, ...] )\n""    [ TABLESPACE tablespace ]\n""    [ WHERE predicate ]"msgstr ""# sql_help.h:165#: sql_help.h:165msgid "define a new procedural language"msgstr "建立新的程序語言"# sql_help.h:166#: sql_help.h:166msgid """CREATE [ TRUSTED ] [ PROCEDURAL ] LANGUAGE name\n""    HANDLER call_handler [ VALIDATOR valfunction ]"msgstr ""# sql_help.h:169#: sql_help.h:169msgid "define a new operator class"msgstr "建立新的operator class"# sql_help.h:170#: sql_help.h:170msgid """CREATE OPERATOR CLASS name [ DEFAULT ] FOR TYPE data_type USING index_method ""AS\n""  {  OPERATOR strategy_number operator_name [ ( op_type, op_type ) ] ""[ RECHECK ]\n""   | FUNCTION support_number funcname ( argument_type [, ...] )\n""   | STORAGE storage_type\n""  } [, ... ]"msgstr ""# sql_help.h:173#: sql_help.h:173msgid "define a new operator"msgstr "建立新的operator"# sql_help.h:174#: sql_help.h:174msgid """CREATE OPERATOR name (\n""    PROCEDURE = funcname\n""    [, LEFTARG = lefttype ] [, RIGHTARG = righttype ]\n""    [, COMMUTATOR = com_op ] [, NEGATOR = neg_op ]\n""    [, RESTRICT = res_proc ] [, JOIN = join_proc ]\n""    [, HASHES ] [, MERGES ]\n""    [, SORT1 = left_sort_op ] [, SORT2 = right_sort_op ]\n""    [, LTCMP = less_than_op ] [, GTCMP = greater_than_op ]\n"")"msgstr ""# sql_help.h:177#: sql_help.h:177msgid "define a new rewrite rule"msgstr "建立新的rewrite rule"# sql_help.h:178#: sql_help.h:178msgid """CREATE [ OR REPLACE ] RULE name AS ON event\n""    TO table [ WHERE condition ]\n""    DO [ ALSO | INSTEAD ] { NOTHING | command | ( command ; command ... ) }"msgstr ""# sql_help.h:181#: sql_help.h:181msgid "define a new schema"msgstr "建立新的schema"#: sql_help.h:182msgid """CREATE SCHEMA schemaname [ AUTHORIZATION username ] [ schema_element ""[ ... ] ]\n""CREATE SCHEMA AUTHORIZATION username [ schema_element [ ... ] ]"msgstr ""# sql_help.h:185#: sql_help.h:185msgid "define a new sequence generator"msgstr "建立新的sequence產生器"# sql_help.h:186#: sql_help.h:186msgid """CREATE [ TEMPORARY | TEMP ] SEQUENCE name [ INCREMENT [ BY ] increment ]\n""    [ MINVALUE minvalue | NO MINVALUE ] [ MAXVALUE maxvalue | NO MAXVALUE ]\n""    [ START [ WITH ] start ] [ CACHE cache ] [ [ NO ] CYCLE ]"msgstr ""# sql_help.h:189#: sql_help.h:189msgid "define a new table"msgstr "建立新的資料表"# sql_help.h:190#: sql_help.h:190msgid """CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE table_name (\n""  { column_name data_type [ DEFAULT default_expr ] [ column_constraint ""[ ... ] ]\n""    | table_constraint\n""    | LIKE parent_table [ { INCLUDING | EXCLUDING } DEFAULTS ] }  [, ... ]\n"")\n""[ INHERITS ( parent_table [, ... ] ) ]\n""[ WITH OIDS | WITHOUT OIDS ]\n""[ ON COMMIT { PRESERVE ROWS | DELETE ROWS | DROP } ]\n""[ TABLESPACE tablespace ]\n""\n""where column_constraint is:\n""\n""[ CONSTRAINT constraint_name ]\n""{ NOT NULL | \n""  NULL | \n""  UNIQUE [ USING INDEX TABLESPACE tablespace ] |\n""  PRIMARY KEY [ USING INDEX TABLESPACE tablespace ] |\n""  CHECK (expression) |\n""  REFERENCES reftable [ ( refcolumn ) ] [ MATCH FULL | MATCH PARTIAL | MATCH ""SIMPLE ]\n""    [ ON DELETE action ] [ ON UPDATE action ] }\n""[ DEFERRABLE | NOT DEFERRABLE ] [ INITIALLY DEFERRED | INITIALLY ""IMMEDIATE ]\n""\n""and table_constraint is:\n""\n""[ CONSTRAINT constraint_name ]\n""{ UNIQUE ( column_name [, ... ] ) [ USING INDEX TABLESPACE tablespace ] |\n""  PRIMARY KEY ( column_name [, ... ] ) [ USING INDEX TABLESPACE tablespace ] ""|\n""  CHECK ( expression ) |\n""  FOREIGN KEY ( column_name [, ... ] ) REFERENCES reftable [ ( refcolumn ""[, ... ] ) ]\n""    [ MATCH FULL | MATCH PARTIAL | MATCH SIMPLE ] [ ON DELETE action ] [ ON ""UPDATE action ] }\n""[ DEFERRABLE | NOT DEFERRABLE ] [ INITIALLY DEFERRED | INITIALLY IMMEDIATE ]"msgstr ""# sql_help.h:193# sql_help.h:389#: sql_help.h:193 sql_help.h:389msgid "define a new table from the results of a query"msgstr "以查詢結果建立新的資料表"# sql_help.h:194#: sql_help.h:194msgid """CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE table_name ""[ (column_name [, ...] ) ] [ [ WITH | WITHOUT ] OIDS ]\n""    AS query"msgstr ""# sql_help.h:197#: sql_help.h:197msgid "define a new tablespace"msgstr "建立新的tablespace"# sql_help.h:198#: sql_help.h:198msgid """CREATE TABLESPACE tablespacename [ OWNER username ] LOCATION 'directory'"msgstr ""# sql_help.h:201#: sql_help.h:201msgid "define a new trigger"msgstr "建立新的trigger"# sql_help.h:202#: sql_help.h:202msgid """CREATE TRIGGER name { BEFORE | AFTER } { event [ OR ... ] }\n""    ON table [ FOR [ EACH ] { ROW | STATEMENT } ]\n""    EXECUTE PROCEDURE funcname ( arguments )"msgstr ""# sql_help.h:205#: sql_help.h:205msgid "define a new data type"msgstr "建立新的資料型別"# sql_help.h:206#: sql_help.h:206msgid """CREATE TYPE name AS\n""    ( attribute_name data_type [, ... ] )\n""\n""CREATE TYPE name (\n""    INPUT = input_function,\n""    OUTPUT = output_function\n""    [ , RECEIVE = receive_function ]\n""    [ , SEND = send_function ]\n""    [ , ANALYZE = analyze_function ]\n""    [ , INTERNALLENGTH = { internallength | VARIABLE } ]\n""    [ , PASSEDBYVALUE ]\n""    [ , ALIGNMENT = alignment ]\n""    [ , STORAGE = storage ]\n""    [ , DEFAULT = default ]\n""    [ , ELEMENT = element ]\n""    [ , DELIMITER = delimiter ]\n"")"msgstr ""# sql_help.h:209#: sql_help.h:209msgid "define a new database user account"msgstr "建立新的資料庫使用者"# sql_help.h:210#: sql_help.h:210msgid """CREATE USER name [ [ WITH ] option [ ... ] ]\n""\n""where option can be:\n""    \n""      SYSID uid \n""    | CREATEDB | NOCREATEDB\n""    | CREATEUSER | NOCREATEUSER\n""    | IN GROUP groupname [, ...]\n""    | [ ENCRYPTED | UNENCRYPTED ] PASSWORD 'password'\n""    | VALID UNTIL 'abstime'"msgstr ""# sql_help.h:213#: sql_help.h:213msgid "define a new view"msgstr "建立新的view"# sql_help.h:214#: sql_help.h:214msgid "CREATE [ OR REPLACE ] VIEW name [ ( column_name [, ...] ) ] AS query"msgstr ""# sql_help.h:217#: sql_help.h:217msgid "deallocate a prepared statement"msgstr "釋放prepared statement"# sql_help.h:218#: sql_help.h:218msgid "DEALLOCATE [ PREPARE ] plan_name"msgstr ""# sql_help.h:221#: sql_help.h:221msgid "define a cursor"msgstr "建立一個cursor"# sql_help.h:222#: sql_help.h:222msgid """DECLARE name [ BINARY ] [ INSENSITIVE ] [ [ NO ] SCROLL ]\n""    CURSOR [ { WITH | WITHOUT } HOLD ] FOR query\n""    [ FOR { READ ONLY | UPDATE [ OF column [, ...] ] } ]"msgstr ""# sql_help.h:225#: sql_help.h:225msgid "delete rows of a table"msgstr "刪除資料表中的資料"# sql_help.h:226#: sql_help.h:226msgid "DELETE FROM [ ONLY ] table [ WHERE condition ]"msgstr "DELETE FROM [ ONLY ] 資料表 [ WHERE 條件 ]"# sql_help.h:229#: sql_help.h:229msgid "remove an aggregate function"msgstr "刪除aggregate function"# sql_help.h:230#: sql_help.h:230msgid "DROP AGGREGATE name ( type ) [ CASCADE | RESTRICT ]"msgstr "DROP AGGREGATE 名稱 ( 資料型別 ) [ CASCADE | RESTRICT ]"# sql_help.h:233#: sql_help.h:233msgid "remove a cast"msgstr "刪除一個cast"# sql_help.h:234#: sql_help.h:234msgid "DROP CAST (sourcetype AS targettype) [ CASCADE | RESTRICT ]"msgstr "DROP CAST (來源資料型別 AS 目的資料型別) [ CASCADE | RESTRICT ]"# sql_help.h:237#: sql_help.h:237msgid "remove a conversion"msgstr "刪除一個conversion"# sql_help.h:238#: sql_help.h:238msgid "DROP CONVERSION name [ CASCADE | RESTRICT ]"msgstr "DROP CONVERSION 名稱 [ CASCADE | RESTRICT ]"# sql_help.h:241#: sql_help.h:241msgid "remove a database"msgstr "刪除資料庫"# sql_help.h:242#: sql_help.h:242msgid "DROP DATABASE name"msgstr "DROP DATABASE 名稱"# sql_help.h:245#: sql_help.h:245msgid "remove a domain"msgstr "刪除一個domain"# sql_help.h:246#: sql_help.h:246msgid "DROP DOMAIN name [, ...]  [ CASCADE | RESTRICT ]"msgstr "DROP DOMAIN 名稱 [, ...]  [ CASCADE | RESTRICT ]"# sql_help.h:249#: sql_help.h:249msgid "remove a function"msgstr "刪除函式"# sql_help.h:250#: sql_help.h:250msgid "DROP FUNCTION name ( [ type [, ...] ] ) [ CASCADE | RESTRICT ]"msgstr "DROP FUNCTION 名稱 ( [ 資料型別 [, ...] ] ) [ CASCADE | RESTRICT ]"# sql_help.h:253#: sql_help.h:253msgid "remove a user group"msgstr "刪除一個群組"# sql_help.h:254#: sql_help.h:254msgid "DROP GROUP name"msgstr "DROP GROUP 名稱"# sql_help.h:257#: sql_help.h:257msgid "remove an index"msgstr "刪除一個索引"# sql_help.h:258#: sql_help.h:258msgid "DROP INDEX name [, ...] [ CASCADE | RESTRICT ]"msgstr "DROP INDEX 名稱 [, ...] [ CASCADE | RESTRICT ]"# sql_help.h:261#: sql_help.h:261msgid "remove a procedural language"msgstr "刪除一個程序語言"# sql_help.h:262#: sql_help.h:262msgid "DROP [ PROCEDURAL ] LANGUAGE name [ CASCADE | RESTRICT ]"msgstr "DROP [ PROCEDURAL ] LANGUAGE 名稱 [ CASCADE | RESTRICT ]"# sql_help.h:265#: sql_help.h:265msgid "remove an operator class"msgstr "刪除一個operator class"# sql_help.h:266#: sql_help.h:266msgid "DROP OPERATOR CLASS name USING index_method [ CASCADE | RESTRICT ]"msgstr "DROP OPERATOR CLASS 名稱 USING 索引方式 [ CASCADE | RESTRICT ]"# sql_help.h:269#: sql_help.h:269msgid "remove an operator"msgstr "刪除operator"# sql_help.h:270#: sql_help.h:270msgid """DROP OPERATOR name ( { lefttype | NONE } , { righttype | NONE } ) [ CASCADE ""| RESTRICT ]"msgstr "DROP OPERATOR 名稱 ( { 左側資料型別 | NONE } , { 右側資料型別 | NONE } ) [ CASCADE | RESTRICT ]"# sql_help.h:273#: sql_help.h:273msgid "remove a rewrite rule"msgstr "刪除一個rewrite rule"# sql_help.h:274#: sql_help.h:274msgid "DROP RULE name ON relation [ CASCADE | RESTRICT ]"msgstr ""# sql_help.h:277#: sql_help.h:277msgid "remove a schema"msgstr "刪除一個schema"# sql_help.h:278#: sql_help.h:278msgid "DROP SCHEMA name [, ...] [ CASCADE | RESTRICT ]"msgstr "DROP SCHEMA 名稱 [, ...] [ CASCADE | RESTRICT ]"# sql_help.h:281#: sql_help.h:281msgid "remove a sequence"msgstr "刪除sequence"# sql_help.h:282#: sql_help.h:282msgid "DROP SEQUENCE name [, ...] [ CASCADE | RESTRICT ]"msgstr "DROP SEQUENCE 名稱 [, ...] [ CASCADE | RESTRICT ]"# sql_help.h:285#: sql_help.h:285msgid "remove a table"msgstr "刪除資料表"# sql_help.h:286#: sql_help.h:286msgid "DROP TABLE name [, ...] [ CASCADE | RESTRICT ]"msgstr "DROP TABLE 名稱 [, ...] [ CASCADE | RESTRICT ]"# sql_help.h:289#: sql_help.h:289msgid "remove a tablespace"msgstr "刪除一個tablespace"# sql_help.h:290#: sql_help.h:290msgid "DROP TABLESPACE tablespacename"msgstr "DROP TABLESPACE tablespace名稱"# sql_help.h:293#: sql_help.h:293msgid "remove a trigger"msgstr "刪除trigger"# sql_help.h:294#: sql_help.h:294msgid "DROP TRIGGER name ON table [ CASCADE | RESTRICT ]"msgstr "DROP TRIGGER 名稱 ON 資料表 [ CASCADE | RESTRICT ]"# sql_help.h:297#: sql_help.h:297msgid "remove a data type"msgstr "刪除資料型別"# sql_help.h:298#: sql_help.h:298msgid "DROP TYPE name [, ...] [ CASCADE | RESTRICT ]"msgstr "DROP TYPE 名稱 [, ...] [ CASCADE | RESTRICT ]"# sql_help.h:301#: sql_help.h:301msgid "remove a database user account"msgstr "刪除一個資料庫使用者"# sql_help.h:302#: sql_help.h:302msgid "DROP USER name"msgstr "DROP USER 名稱"# sql_help.h:305#: sql_help.h:305msgid "remove a view"msgstr "刪除一個view"# sql_help.h:306#: sql_help.h:306msgid "DROP VIEW name [, ...] [ CASCADE | RESTRICT ]"msgstr "DROP VIEW 名稱 [, ...] [ CASCADE | RESTRICT ]"# sql_help.h:310#: sql_help.h:310msgid "END [ WORK | TRANSACTION ]"msgstr ""# sql_help.h:313#: sql_help.h:313msgid "execute a prepared statement"msgstr "執行prepared statement"# sql_help.h:314#: sql_help.h:314msgid "EXECUTE plan_name [ (parameter [, ...] ) ]"msgstr ""# sql_help.h:317#: sql_help.h:317msgid "show the execution plan of a statement"msgstr "顯示statement的執行計蕫"# sql_help.h:318#: sql_help.h:318msgid "EXPLAIN [ ANALYZE ] [ VERBOSE ] statement"msgstr "EXPLAIN [ ANALYZE ] [ VERBOSE ] 敘述"# sql_help.h:321#: sql_help.h:321msgid "retrieve rows from a query using a cursor"msgstr "從使用cursor的查詢讀取資料"# sql_help.h:322#: sql_help.h:322msgid """FETCH [ direction { FROM | IN } ] cursorname\n""\n""where direction can be empty or one of:\n""\n""    NEXT\n""    PRIOR\n""    FIRST\n""    LAST\n""    ABSOLUTE count\n""    RELATIVE count\n""    count\n""    ALL\n""    FORWARD\n""    FORWARD count\n""    FORWARD ALL\n""    BACKWARD\n""    BACKWARD count\n""    BACKWARD ALL"msgstr ""# sql_help.h:325#: sql_help.h:325msgid "define access privileges"msgstr "建立存取權限"#: sql_help.h:326msgid """GRANT { { SELECT | INSERT | UPDATE | DELETE | RULE | REFERENCES | TRIGGER }\n""    [,...] | ALL [ PRIVILEGES ] }\n""    ON [ TABLE ] tablename [, ...]\n""    TO { username | GROUP groupname | PUBLIC } [, ...] [ WITH GRANT ""OPTION ]\n""\n""GRANT { { CREATE | TEMPORARY | TEMP } [,...] | ALL [ PRIVILEGES ] }\n""    ON DATABASE dbname [, ...]\n""    TO { username | GROUP groupname | PUBLIC } [, ...] [ WITH GRANT ""OPTION ]\n""\n""GRANT { EXECUTE | ALL [ PRIVILEGES ] }\n""    ON FUNCTION funcname ([type, ...]) [, ...]\n""    TO {

⌨️ 快捷键说明

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