-
Notifications
You must be signed in to change notification settings - Fork 0
/
ambility_flashcards.sql
178 lines (168 loc) · 7.13 KB
/
ambility_flashcards.sql
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
-- phpMyAdmin SQL Dump
-- version 4.0.10.14
-- http://www.phpmyadmin.net
--
-- Host: localhost:3306
-- Generation Time: Apr 17, 2018 at 07:12 AM
-- Server version: 10.0.27-MariaDB-cll-lve
-- PHP Version: 5.4.31
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `ambility_flashcards`
--
-- --------------------------------------------------------
--
-- Table structure for table `flashcards`
--
CREATE TABLE IF NOT EXISTS `flashcards` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`english` text,
`pinyin` text,
`hanzi` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=137 ;
--
-- Dumping data for table `flashcards`
--
INSERT INTO `flashcards` (`id`, `english`, `pinyin`, `hanzi`) VALUES
(1, 'good', 'hǎo', '好'),
(2, 'teacher', 'lÇŽoshÄ«', 'è€å¸ˆ'),
(3, 'mr (title)', 'xiÄnsheng', '先生'),
(4, 'name', 'mÃngzi', 'åå—'),
(5, 'New York', 'niǔyuē', '纽约'),
(6, 'America', 'měiguó', '美国'),
(8, 'six', 'liù', 'å…'),
(9, 'is/am', 'shì', '是'),
(10, 'not', 'bù', 'ä¸'),
(11, 'five', 'wǔ', '五'),
(12, 'seven', 'qī', '七'),
(13, 'also', 'yě', '也'),
(14, 'student', 'xuésheng', 'å¦ç”Ÿ'),
(15, 'you (courteous)', 'nÃn', '您'),
(16, 'you', 'nÇ', 'ä½ '),
(17, 'me', 'wǒ', '我'),
(18, 'expensive; noble; precious', 'guì', '贵'),
(19, 'to ask', 'qÇngwèn', '请问'),
(20, 'he/him', 'tÄ', 'ä»–'),
(21, 'she/her', 'tÄ', '她'),
(22, 'four', 'sì', '四'),
(23, 'three', 'sÄn', '三'),
(24, 'two', 'èr', '二'),
(25, 'one', 'yī', '一'),
(26, 'what', 'shénme', '什么'),
(27, 'named', 'jià o', 'å«'),
(28, 'possessive particle', 'de', 'çš„'),
(29, 'England', 'yīngguó', '英国'),
(30, 'please', 'qÇng', '请'),
(31, 'surnamed', 'xìng', '姓'),
(32, 'question particle', 'ma', 'å—'),
(33, 'eight', 'bÄ', 'å…«'),
(34, 'nine', 'jiÇ”', 'ä¹'),
(35, 'that', 'nà ', '那'),
(36, 'miss (title)', 'xiÇŽojie', 'å°å§'),
(37, 'ten', 'shÃ', 'å'),
(38, 'person', 'rén', '人'),
(39, 'China', 'zhÅngguó', 'ä¸å›½'),
(40, 'Beijing', 'běijīng', '北京'),
(41, 'Australia', 'à o dà lì yà ', '澳大利亚'),
(42, 'father', 'bà ba', '爸爸'),
(43, 'suggestive particle', 'ba', 'å§'),
(44, 'hundred', 'bǎi', '百'),
(45, 'father''s elder brother', 'bóbo', '伯伯'),
(46, 'you''re welcome', 'bù kèqi', 'ä¸å®¢æ°”'),
(47, 'no; not', 'bù', 'ä¸'),
(48, 'meal; dish', 'cà i', 'èœ'),
(49, 'to eat', 'chÄ«', 'åƒ'),
(50, 'to eat a meal', 'chÄ«fà n', 'åƒé¥'),
(51, 'big', 'dà ', '大'),
(52, 'younger brother', 'dìdi', '弟弟'),
(53, 'I''m sorry', 'duì bù qÇ', '对ä¸èµ·'),
(54, 'all; both; entirely', 'dÅu', '都'),
(55, 'son', 'érzi', 'å„¿å'),
(56, 'older brother', 'gēge', '哥哥'),
(57, 'general measure word; measure word for people', 'gè', '个'),
(58, 'worker', 'gÅngrén', '工人'),
(59, 'to drink', 'hÄ“', 'å–'),
(60, 'and', 'hé', '和'),
(61, 'very', 'hěn', '很'),
(62, 'can; be able to', 'huì', '会'),
(63, 'how many', 'jÇ', 'å‡ '),
(64, 'family', 'jiÄ', '家'),
(65, 'elder sister', 'jiÄ›jie', 'å§å§'),
(66, 'but', 'kÄ›shì', 'å¯æ˜¯'),
(67, 'mouth; measure word for things with mouths', 'kÇ’u', 'å£'),
(68, 'two (before measure word)', 'liǎng', '两'),
(69, 'zero', 'lÃng', '零'),
(70, 'mother', 'mÄma', '妈妈'),
(71, 'busy', 'máng', '忙'),
(72, 'not have', 'méi yǒu', '没有'),
(73, 'younger sister', 'mèimei', '妹妹'),
(74, 'plural word', 'men', '们'),
(75, 'tomorrow', 'mÃngtiÄn', '明天'),
(76, 'which', 'nǎ', '哪'),
(79, 'grandmother', 'nǎinai', '奶奶'),
(80, 'daughter', 'nǚ''ér', '女儿'),
(81, 'friend', 'péngyou', '朋å‹'),
(82, 'who', 'shéi', 'è°'),
(83, 'years of age', 'suì', 'å²'),
(84, 'to like', 'xÇhuan', '喜欢'),
(85, 'thanks', 'xièxie', '谢谢'),
(86, 'paternal grandfather', 'yéye', '爷爷'),
(87, 'doctor', 'yīshēng', '医生'),
(88, 'to have', 'yǒu', '有'),
(89, 'this', 'zhè', '这'),
(90, 'to do; to make;', 'zuò', 'åš'),
(91, 'month', 'yuè', '月'),
(92, 'day of a month', 'hà o', 'å·'),
(93, 'day of the week', 'xīngqī', '星期'),
(94, 'today', 'jÄ«ntiÄn', '今天'),
(95, 'birthday', 'shēngrì', '生日'),
(96, 'year', 'nián', '年'),
(97, 'both', 'duÅ', '多'),
(98, 'how are things', 'zÄ›nme yà ng', 'æ€Žä¹ˆæ ·'),
(99, 'very good', 'tà i hǎole', '太好了'),
(100, 'very good', 'tà i hǎole', '太好了'),
(101, 'to like', 'xÇhuan', '喜欢'),
(102, 'chinese food', 'ZhÅngguó cà i', 'ä¸å›½èœ'),
(103, 'us', 'wǒmen', '我们'),
(104, 'those guys', 'tÄmen', '他们'),
(105, 'you guys', 'nÇmen', 'ä½ ä»¬'),
(106, 'o''clock', 'diǎn', '点'),
(107, 'half (used in time)', 'bà n', 'åŠ'),
(108, 'quarter (used in time)', 'kè', '刻'),
(109, 'goodbye', 'zà ijià n', 'å†è§'),
(110, 'photograph', 'zhà o pià n', '照片'),
(111, 'female', 'nǚ', '女'),
(112, 'male', 'nán', '男'),
(113, 'children', 'háizi', 'å©å'),
(114, 'have', 'yǒu', '有'),
(115, 'Sunday', 'XÄ«ngqÃrì', '星期日'),
(116, 'wrong; bad', 'cuò', '错'),
(117, 'yesterday', 'zuótiÄn', '昨天'),
(118, 'weekend', 'zhÅumò', '周末'),
(119, 'to want', 'xiǎng', '想'),
(120, 'to see', 'kà n', '看'),
(121, 'to go', 'qù', '去'),
(122, 'together', 'yÄ«qÇ', '一起'),
(123, 'to think', 'juéde', '觉得'),
(124, 'movie', 'dià nyÇng', '电影'),
(125, 'interesting', 'yÇ’u yìsi', '有æ„æ€'),
(126, 'forget about it', 'suà nle', '算了'),
(127, 'foreign', 'wà iguó', '外国'),
(128, 'calligraphy', 'shūfǎ', '书法'),
(129, 'now', 'xià nzà i', '现在'),
(130, 'dinner', 'wÇŽnfà n', '晚é¥'),
(131, 'why', 'wèi shénme', '为什么'),
(132, 'because', 'yÄ«nwèi ', 'å› ä¸º'),
(133, 'classmate', 'tóngxué', 'åŒå¦'),
(134, 'know; acquainted with', 'rènshi', '认识'),
(135, 'to play ball', 'dÇŽqiú', '打çƒ'),
(136, 'to hit', 'dǎ', '打');
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;