PHP Classes

File: Example/Tables/Table_Section.md

Recommend this page to a friend!
  Classes of Stefan Kientzler   PHP MySQL Info to MD   Example/Tables/Table_Section.md   Download  
File: Example/Tables/Table_Section.md
Role: Auxiliary data
Content type: text/markdown
Description: Auxiliary data
Class: PHP MySQL Info to MD
Generate a MySQL table structure Markdown report
Author: By
Last change:
Date: 1 year ago
Size: 963 bytes
 

Contents

Class file image Download

Table: Section

Overview

Company sections

|Field|Type|Null|Key|Default|Comment| |-----|----|-|:-:|-------|-------| |lID|int|No|PRI|not set|Primary Key| |strName|varchar(50)|No||empty|| |strDescription|text|No||not set||

Tables referencing this Table

|Column|Referenced by|UPDATE|DELETE| |------|-------------|------|------| |lID|Employee . lSectionID|RESTRICT|RESTRICT|

Table Create Statement:

CREATE TABLE `Section` (
  `lID` int NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
  `strName` varchar(50) COLLATE utf8mb3_german2_ci NOT NULL DEFAULT '',
  `strDescription` text COLLATE utf8mb3_german2_ci NOT NULL,
  PRIMARY KEY (`lID`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_german2_ci COMMENT='Company sections'