Firebird 2.5 Language Reference. . . . . . . . . . . . . . . . . . . . . . . . . . . . . 266 7.5.1. Firing Order (Order of Execution) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 508 Using MON$STATEMENTS to Cancel a Query . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 509 This Firebird SQL Language Reference is the first comprehensive manual to cover all aspects of the query language used by developers to communicate, through their applications, with the Firebird relational0 码力 | 521 页 | 2.30 MB | 1 年前3
firebird 40 language reference. . . . . . . . . . . . . . . . . . . . . . . . . . . . . 352 7.6.1. Firing Order (Order of Execution) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 760 Using MON$STATEMENTS to Cancel a Query . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 760 This Firebird 4.0 Language Reference is the third comprehensive manual to cover all aspects of the query language used by developers to communicate, through their applications, with the Firebird relational0 码力 | 778 页 | 3.43 MB | 1 年前3
firebird isqlto a Firebird database. It accepts DSQL statements along with a group of SET and SHOW commands to query and interact with the Firebird database. Some SET commands can be incorporated in DDL scripts to terminated, using a QUIT or EXIT command. Isql can be used interactively to: ◦ Create, update, query, and drop data or metadata. ◦ Input a script file containing a batch of SQL statements in sequence on/off SET EXPLAIN -- toggle display of query access plan in the explained form SET HEADING -- toggle display of query column titles SET LIST -- toggle column0 码力 | 76 页 | 369.92 KB | 1 年前3
firebird wire protocol. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17 5.7. Rows affected by query execution . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32 9.4. Query service. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . a prepare with the obtained statement handle. 5.4. Describe Describe of output parameters of a query is done using the statement information request message Example of requested information items •0 码力 | 40 页 | 213.15 KB | 1 年前3
Firebird 2.1 ErrorCodesappears more than once in USING clause -104 336397237 dsql_cte_not_used CTE "@1" is not used in query -105 335544702 like_escape_invalid Invalid ESCAPE sequence -105 335544789 extract_input_mismatch after isc_svc_query() -901 335740933 gfix_replay_req Replay log pathname required -901 336330757 gbak_switches_conflict Conflicting switches for backup/restore -901 336986117 fbsvcmgr_query_err Unknown Unknown tag (@1) in isc_svc_query() results -901 335544326 bad_dpb_form Unrecognized database parameter block -901 335740934 gfix_pgbuf_req Number of page buffers for cache required -901 336986118 fbsvcmgr_switch_unknown0 码力 | 31 页 | 103.24 KB | 1 年前3
firebird 5 quickstartguidedatabase files. Users don’t need, and should not have, access to the files — not even read-only. They query databases via the server, and the server makes sure that users only get the allowed type of access User: SYSDBA SQL> You can now continue to play about with the employee database. With isql you can query data, get information about the metadata, create database objects, run data definition scripts and let’s first type in this query: SQL>select * from rdb$relations; Although you haven’t created any tables yet, the screen will fill up with a large amount of data! This query selects all rows in the0 码力 | 49 页 | 396.21 KB | 1 年前3
Firebird 2 QuickStartdatabase files. Users don't need, and should not have, access to the files – not even read-only. They query databases via the server, and the server makes sure that users only get the allowed type of access sysdba SQL> You can now continue to play about with the employee.fdb database. With isql you can query data, get information about the metadata, create database objects, run data definition scripts and let's first type in this query: SQL>SELECT * FROM RDB$RELATIONS;# Although you haven't created any tables yet, the screen will fill up with a large amount of data! This query selects all of the rows in0 码力 | 40 页 | 218.42 KB | 1 年前3
firebird language reference 30 rusСинтаксис: SELECT [FIRST] [SKIP ] FROM ... ... , ::= integer literal | query parameter | (integer-expression) Таблица 5.1. Параметры предложений FIRST и SKIP Параметр Описание integer literal Целочисленный литерал. query parameter Параметр запроса. ? — в DSQL и :paramname — в PSQL. Операторы DML 243 Параметр Описание обозначенная псевдонимом таблицы и псевдонимами полей. Синтаксис: Операторы DML 252 (select-query) [[AS] derived-table-alias] [( )] := column-alias 0 码力 | 719 页 | 3.98 MB | 1 年前3
firebird 30 sprachreferenzCREATE PROCEDURE P(APARAM INT) RETURNS (B INT) AS BEGIN /* This text will be ignored during the execution of the statement since it is a comment */ B = A + 1; -- In-line comment SUSPEND; END| <query-parameter> | ( ) Tabelle 68. Argumente für die Klauseln FIRST und SKIP Argument Beschreibung integer-literal Ganzzahlliteral query-parameter Platzhalter fungiert als virtuelle Tabelle, die die einschließende Anweisung abfragen kann. Syntax ( query>) [[AS] derived-table-alias] [( )] := column-alias 0 码力 | 701 页 | 3.12 MB | 1 年前3
Firebird Null Guide: NULL behaviour and pitfalls in Firebird SQLof the NULL in B. But if B is indexed, IN returns false and NOT IN returns true. As a result, the query select A from TA where A not in ( select B from TB ) returns a dataset with one record — containing FROM Farms WHERE EXISTS (SELECT * FROM Landowners WHERE Landowners.Name = Farms.Farmer) This query returns the names of all farmers who also figure in the Landowners table. The EXISTS predicate returns SELECT Farmer, Cows, Sheep FROM Farms WHERE Cows + Sheep > 0 On the surface, this looks like a query returning all the farms that have at least one cow and/or sheep (assuming that neither Cows nor Sheep0 码力 | 69 页 | 479.63 KB | 1 年前3
共 20 条
- 1
- 2













