Geodb floatdata: Unterschied zwischen den Versionen

OpenGeoDB & GISWiki - Das freie Portal für Geoinformatik (GIS)
Wechseln zu: Navigation, Suche
(Definition)
(Beispieldatensätze)
 
Zeile 250: Zeile 250:
  
 
==Definition==
 
==Definition==
<syntaxhighlight lang="mysql">
+
<source lang="mysql">
 
   CREATE TABLE `geodb_floatdata` (
 
   CREATE TABLE `geodb_floatdata` (
 
   `loc_id` int(11) NOT NULL,
 
   `loc_id` int(11) NOT NULL,
Zeile 267: Zeile 267:
 
   KEY `float_until_idx` (`valid_until`)
 
   KEY `float_until_idx` (`valid_until`)
 
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
</syntaxhighlight>
+
</source>
  
 
==Beispieldatensätze==
 
==Beispieldatensätze==
  
 
Die Datenbank enthält keine Datensätze.
 
Die Datenbank enthält keine Datensätze.
 +
 +
[[Kategorie:Datenbank]]

Aktuelle Version vom 28. März 2008, 22:10 Uhr

Die Tabelle geodb floatdata soll der Speicherung von Fließkomma-Werten dienen. Sie wird bisher nicht genutzt.

Fields

PK Name Data type Size Precision Values Default Auto Increment Binary Not null Unsigned Zero Fill Unique
loc_id INTEGER 11 0 Yes.gif
float_val DOUBLE 0 0 Yes.gif
float_type INTEGER 11 0 Yes.gif
float_subtype INTEGER 11 0
valid_since DATE 0 0
date_type_since INTEGER 11 0
valid_until DATE 0 0 Yes.gif
date_type_until INTEGER 11 0 Yes.gif


Indices

Name Fields Unique Collation Full Text
float_lid_idx loc_id Ascending
float_val_idx float_val Ascending
float_type_idx float_type Ascending
float_stype_idx float_subtype Ascending
float_since_idx valid_since Ascending
float_until_idx valid_until Ascending

Foreign Keys

There are no foreign keys for table geodb_floatdata

Triggers

There are no triggers for table geodb_floatdata

Options

TransactSafe TableType Row Format Check Sum Delay Key Write Pack Keys Temporary Min Rows Max Rows Union
Yes.gif InnoDB Ascending 0 0


Definition

  CREATE TABLE `geodb_floatdata` (
  `loc_id` int(11) NOT NULL,
  `float_val` double NOT NULL,
  `float_type` int(11) NOT NULL,
  `float_subtype` int(11) default NULL,
  `valid_since` date default NULL,
  `date_type_since` int(11) default NULL,
  `valid_until` date NOT NULL,
  `date_type_until` int(11) NOT NULL,
  KEY `float_lid_idx` (`loc_id`),
  KEY `float_val_idx` (`float_val`),
  KEY `float_type_idx` (`float_type`),
  KEY `float_stype_idx` (`float_subtype`),
  KEY `float_since_idx` (`valid_since`),
  KEY `float_until_idx` (`valid_until`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

Beispieldatensätze

Die Datenbank enthält keine Datensätze.