Schema
Owner
albenard
Descriptions
There is no description for view geno_sans_graines3
Columns
Name | Data type | Description |
---|---|---|
idgeno |
integer |
|
idespece |
integer |
|
type_geno |
integer |
|
nom_court |
varchar(30) |
|
Rules
Name | Event | Instead | Condition | Description |
---|---|---|---|---|
_RETURN |
SELECT |
|
|
Indices
There are no indices for table geno_sans_graines3
Definition
CREATE VIEW public.geno_sans_graines3 (
idgeno,
idespece,
type_geno,
nom_court)
AS
SELECT genotype.idgeno,
genotype.idespece,
genotype.type_geno,
genotype.nom_court
FROM genotype
WHERE genotype.idespece = 45 AND genotype.type_geno = 200;
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) |