Jump to content
  • 0

Проблема с добавлением даты в mysql


RK3DNP
 Share

Question

Имеется mysql 5.7, php7.
таблица с полями fio, boss, office, position, date-u, date-u имеет формат 0000-00-00

Выполняю запрос из php, не добавляет в базу данные

mysqli_query($con, "INSERT INTO $table(fio, boss, office, position, date-u) VALUES ('$fio', '$boss', '$office', '$position', 11/11/2012)");

Если без даты, то данные добавляются

Если сделать запрос из phpmyadmin, данные добавляются, но дата все равно с нулями.

INSERT INTO `users`(`fio`, `boss`, `office`, `position`, `date-u`) VALUES (1,2,3,4, 11/11/2012)

Почему дату не добавляет?

 

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0
14 часа назад, wwt сказал:

наверное потому что формат записи не соответствует?

Ну так я пробовал по разному, разные варианты форматов, тоже самое было.
Если я изменю на varchar  то скорее всего будет работать, но мне потом надо будет забирать эти данные и делать сортировку по дате, я это смогу?

Link to comment
Share on other sites

  • 0
8 минут назад, RK3DNP сказал:

Ну так я пробовал по разному, разные варианты форматов, тоже самое было.
Если я изменю на varchar  то скорее всего будет работать, но мне потом надо будет забирать эти данные и делать сортировку по дате, я это смогу?

Все зависит от типа столбца, вот примеры:

Структура таблицы

CREATE TABLE IF NOT EXISTS `test` (
  `d1` date NOT NULL,
  `d2` datetime NOT NULL,
  `d3` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `d4` time NOT NULL,
  `d5` year(4) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

Заносим данные

INSERT INTO `dbtest`.`test` (`d1`, `d2`, `d3`, `d4`, `d5`) VALUES ('2017-08-25', '2017-08-25 00:00:00', CURRENT_TIMESTAMP, '00:00:00', '2017');

 

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy