1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
| --------------
SET AUTOCOMMIT = 0
--------------
--------------
START TRANSACTION
--------------
--------------
DROP DATABASE IF EXISTS `base`
--------------
--------------
CREATE DATABASE IF NOT EXISTS `base`
DEFAULT CHARACTER SET `latin1`
DEFAULT COLLATE `latin1_general_ci`
--------------
--------------
DROP TABLE IF EXISTS `test`
--------------
--------------
CREATE TABLE `test` (
`id` integer UNSIGNED NOT NULL auto_increment primary key,
`date` date NOT NULL
) ENGINE=InnoDB
DEFAULT CHARSET=`latin1` COLLATE=`latin1_general_ci`
ROW_FORMAT=COMPRESSED
--------------
--------------
INSERT INTO `test` (`date`) value
('2016-07-11'),('2016-07-12'),('2016-07-13'),('2016-07-14'),('2016-07-15'),('2016-07-16'),('2016-07-17')
--------------
--------------
select * from `test`
--------------
+----+------------+
| id | date |
+----+------------+
| 1 | 2016-07-11 |
| 2 | 2016-07-12 |
| 3 | 2016-07-13 |
| 4 | 2016-07-14 |
| 5 | 2016-07-15 |
| 6 | 2016-07-16 |
| 7 | 2016-07-17 |
+----+------------+
--------------
set lc_time_names = en_US
--------------
--------------
select @@lc_time_names
--------------
+-----------------+
| @@lc_time_names |
+-----------------+
| en_US |
+-----------------+
--------------
select id,
date,
date_format(`date`,'%M') as mois,
date_format(`date`,'%W') as jour
from test
--------------
+----+------------+------+-----------+
| id | date | mois | jour |
+----+------------+------+-----------+
| 1 | 2016-07-11 | July | Monday |
| 2 | 2016-07-12 | July | Tuesday |
| 3 | 2016-07-13 | July | Wednesday |
| 4 | 2016-07-14 | July | Thursday |
| 5 | 2016-07-15 | July | Friday |
| 6 | 2016-07-16 | July | Saturday |
| 7 | 2016-07-17 | July | Sunday |
+----+------------+------+-----------+
--------------
set lc_time_names = fr_FR
--------------
--------------
select @@lc_time_names
--------------
+-----------------+
| @@lc_time_names |
+-----------------+
| fr_FR |
+-----------------+
--------------
select id,
date,
date_format(`date`,'%M') as mois,
date_format(`date`,'%W') as jour
from test
--------------
+----+------------+---------+----------+
| id | date | mois | jour |
+----+------------+---------+----------+
| 1 | 2016-07-11 | juillet | lundi |
| 2 | 2016-07-12 | juillet | mardi |
| 3 | 2016-07-13 | juillet | mercredi |
| 4 | 2016-07-14 | juillet | jeudi |
| 5 | 2016-07-15 | juillet | vendredi |
| 6 | 2016-07-16 | juillet | samedi |
| 7 | 2016-07-17 | juillet | dimanche |
+----+------------+---------+----------+
--------------
COMMIT
--------------
--------------
SET AUTOCOMMIT = 1
--------------
Appuyez sur une touche pour continuer... |
Partager