- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
CREATE TABLE `cache_lead_emails` (
`id` INT(10) NOT NULL AUTO_INCREMENT,
`created_on_date` DATETIME NULL DEFAULT NULL,
`some_id_1` BIGINT(20) NULL DEFAULT NULL,
`some_id_2` BIGINT(20) NULL DEFAULT NULL,
`some_id_3` BIGINT(20) NULL DEFAULT NULL,
`some_id_4` BIGINT(20) NULL DEFAULT NULL,
`index_letter` VARCHAR(1) NULL DEFAULT NULL,
`writable` ENUM('Yes','No') NULL DEFAULT NULL,
`emails` TEXT NULL,
PRIMARY KEY (`id`)
)
COLLATE='utf8_general_ci'
ENGINE=InnoDB
"4" "2013-03-12 17:56:38" "1" "3" "3" "3" "G" "Yes" "4:g****@gmail.com,26:g****@hotmail.com,29:g*****@hotmail.com,116:g****@gmail.com"
"5" "2013-03-12 17:56:38" "1" "3" "3" "3" "I" "Yes" "5:i******@gmail.com,44:i*****@gmail.com"
Sorry for the English.
This is a cache table holding emails separated by letter. For example I`ve shown all e-mails starting with G ( its only one row for all of them). I still don`t know where the digits separating the e-mails come from.
The field "writable" is set to "No" immediately before update and hen updated to "Yes" after update so .. it basically is creative LOCK mechanism :)
brilliant!
Google translate:
Извините за английский язык.
Это кэш-стол с электронной почты, разделенных буквой. Например, я `ве показаны все сообщения электронной почты, начинающиеся с G (ее только одна строка для каждого из них). Я до сих пор не знаю, где цифры отделения электронной почты родом.
В поле "записи" установлен в положение "No" непосредственно перед обновления и курица обновленный "Yes" после обновления так .. это в принципе творческого механизма LOCK :)
блестящий