mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-23 07:05:36 +03:00
15 lines
445 B
Plaintext
15 lines
445 B
Plaintext
USE tpch1;
|
|
drop table if exists dim_day;
|
|
CREATE TABLE `dim_day` (
|
|
`dayId` SMALLINT(5) DEFAULT NULL,
|
|
`displayDate` DATE DEFAULT NULL
|
|
) engine=columnstore DEFAULT CHARSET=utf8;
|
|
INSERT INTO dim_day (dayId, displayDate) VALUES (1,'2012-01-01') ,
|
|
(2,'2012-02-01');
|
|
SELECT STR_TO_DATE(CONCAT(YEARWEEK(displayDate,2),'-01'),'%X%V-%w')
|
|
FROM dim_day;
|
|
STR_TO_DATE(CONCAT(YEARWEEK(displayDate,2),'-01'),'%X%V-%w')
|
|
2012-01-01
|
|
2012-01-29
|
|
drop table dim_day;
|