in reply to Re: Re: mySQL hits or Storable retrieves?
in thread mySQL hits or Storable retrieves?
A database view is a sort of virtual table. You create it with a SELECT statement and then access it like a regular table.
CREATE VIEW view_red_cross_docs AS SELECT <code here> CREATE VIEW view_pro_bono_docs AS SELECT <code here> SELECT <stuff> FROM <joined views>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: mySQL hits or Storable retrieves?
by kwoff (Friar) on Oct 03, 2001 at 03:14 UTC |