I simply have a database with some number of tables which, depending on
the client, may or may not be opened in read-only mode.
To this connection I attach another smaller DB which simply have things
posted to it on occasion as needed.
When the main DB is opened in read-only mode and I try to w
Hi, MikeN.
Assuming I want to compute the average value of all keys, how to write the
query for this using match?
For example, if I write SQL in this way
> SELECT avg(key) From table WHERE key MATCH('avg');
with MATCH info, the virtual table is able to know the query is looking for
average valu
On 6/22/15, R.Smith wrote:
> I simply have a database with some number of tables which, depending on
> the client, may or may not be opened in read-only mode.
>
> To this connection I attach another smaller DB which simply have things
> posted to it on occasion as needed.
>
> When the main DB is o
Given the following example table and data:
create table x(id integer);
with recursive
src(id)
as
(select
1
union all select
id + 1
from
src
where
id < 5)
insert into
x(id)
selec
4 matches
Mail list logo