search
HomeDatabaseMysql Tutorialmysql表设计关于时间字段的注意事项_MySQL

mysql表设计关于时间字段的注意事项:

    几年没有做过mysql的jdbc编码和数据库表设计的工作了,结果刚刚一上手,测试的时候发现都是问题,我这里指的是对应时间字段的设计问题,一般我们都要求时间字段保存到秒,故舍弃了mysql的date类型字段,选择了timestamp类型字段,并且还有一个字段是create_time,默认值是CURRENT_TIMESTAMP 。

字段类型定义:create_time          timestamp default CURRENT_TIMESTAMP comment '创建时间,格式为日期',


表结构定义:

<pre name="code" class="java">/*==============================================================*//* Table: task_detail                                           *//*==============================================================*/create table task_detail(   id                   int not null auto_increment comment '主键',   taskName             varchar(200) comment '任务名称',   start_time           timestamp comment '开始时间',   end_time             timestamp comment '结束时间',   task_start_time      timestamp comment '任务开始时间',   task_end_time        timestamp comment '任务结束时间',   cost_timesecond      int comment '消耗时间,单位为秒',   create_time          timestamp default CURRENT_TIMESTAMP comment '创建时间,格式为日期',   primary key (id));alter table task_detail comment 'Task执行明细表';


结果在进行jdbc保存数据的时候,对于设置为空的字段都进行了默认值的插入。

这块可能没有表述清楚,假设我们需要将end_time设置为空,即通过prepareStatement插入

stmt.setTimestamp(3,null) 这条语句后,其不是空值,而是与

create_time          
一样取了默认值。


这样与我实际想要存储的数据发生了错误,故一直在检查问题原因所在。

MySQl中有多种表示日期和时间的数据类型。其中YEAR表示年份,DATE表示日期,TIME表示时间,DATETIME和TIMESTAMP表示日期和实践。它们的对比如下:

TEAR ,字节数为1,取值范围为“1901——2155”

DATE,字节数为4,取值范围为“1000-01-01——9999-12-31”

TIME,字节数为3,取值范围为“-838:59:59——838:59:59”

DATETIME,字节数为8,取值范围为“1000-01-01 00:00:00——9999-12-31 23:59:59”

TIMESTAMP,字节数为4,取值范围为“19700101080001——20380119111407”

  当插入值超出有效取值范围时,系统会报错,并将零值插入到数据库中。

当把数据表结构修改成如下,在存储数据时就一切正常了。

/*==============================================================*//* Table: task_detail                                           *//*==============================================================*/create table task_detail(   id                   int not null auto_increment comment '主键',   taskName             varchar(200) comment '任务名称',   start_time           datetime comment '开始时间',   end_time             datetime comment '结束时间',   task_start_time      datetime comment '任务开始时间',   task_end_time        datetime comment '任务结束时间',   cost_timesecond      int comment '消耗时间,单位为秒',   create_time          timestamp default CURRENT_TIMESTAMP comment '创建时间,格式为日期',   primary key (id));alter table task_detail comment 'Task执行明细表';

主要是因为一张mysql数据表只应该有一个字段是
timestamp 

类型的,且设置了default值。






Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How do you alter a table in MySQL using the ALTER TABLE statement?How do you alter a table in MySQL using the ALTER TABLE statement?Mar 19, 2025 pm 03:51 PM

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

How do I configure SSL/TLS encryption for MySQL connections?How do I configure SSL/TLS encryption for MySQL connections?Mar 18, 2025 pm 12:01 PM

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

How do you handle large datasets in MySQL?How do you handle large datasets in MySQL?Mar 21, 2025 pm 12:15 PM

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?Mar 21, 2025 pm 06:28 PM

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

How do you drop a table in MySQL using the DROP TABLE statement?How do you drop a table in MySQL using the DROP TABLE statement?Mar 19, 2025 pm 03:52 PM

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

How do you represent relationships using foreign keys?How do you represent relationships using foreign keys?Mar 19, 2025 pm 03:48 PM

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)?How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)?Mar 18, 2025 pm 12:00 PM

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)

How do you create indexes on JSON columns?How do you create indexes on JSON columns?Mar 21, 2025 pm 12:13 PM

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.