+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_pt_tab_position:/tablelist/okayapi_pt_tab_position.html


-- MySQL Table okayapi_pt_tab_position
-- From: OkayAPI.com
CREATE TABLE `okayapi_pt_tab_position` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `pname` varchar(255) NOT NULL COMMENT '职位分类名称',
    KEY `pname` (`pname`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'pt校园兼职-职位';

After replication, you can go to the database to create the database table.


MySQL database table structure design

Displaying 1-1 of 1 result.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
pnamevarchar(255)职位分类名称

Guess You Like

MySQL Table Design okayapi_pt_tab_receiveorders

MySQL Table Design okayapi_pt_tab_releaseorders

MySQL Table Design okayapi_pt_tab_school

MySQL Table Design okayapi_pt_tab_user

MySQL Table Design okayapi_ssm_allege

MySQL Table Design okayapi_ssm_apply

MySQL Table Design okayapi_ssm_company

MySQL Table Design okayapi_ssm_resume

MySQL Table Design okayapi_ssm_stuinfo

MySQL Table Design okayapi_ssm_user

TOP ↑