-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgua_64.sql
More file actions
38 lines (31 loc) · 877 Bytes
/
gua_64.sql
File metadata and controls
38 lines (31 loc) · 877 Bytes
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
/*
Navicat Premium Data Transfer
Source Server : iching
Source Server Type : SQLite
Source Server Version : 3008008
Source Database : main
Target Server Type : SQLite
Target Server Version : 3008008
File Encoding : utf-8
Date: 02/12/2017 20:36:36 PM
*/
PRAGMA foreign_keys = false;
-- ----------------------------
-- Table structure for gua_64
-- ----------------------------
DROP TABLE IF EXISTS "gua_64";
CREATE TABLE "gua_64" (
"gua_bi_str" text(6,0) NOT NULL,
"gua_name" text(2,0) NOT NULL,
"gua_sign" text(2,0) NOT NULL,
"gua_other_name" text(6,0) NOT NULL,
"gua_index" text(2,0) NOT NULL,
PRIMARY KEY("gua_bi_str")
);
-- ----------------------------
-- Records of gua_64
-- ----------------------------
BEGIN;
INSERT INTO "gua_64" VALUES (111111, '乾', '䷀', '乾为天', 1);
COMMIT;
PRAGMA foreign_keys = true;