Skip to content

物种关系

字数
319 字
阅读时间
2 分钟
文档版本
编辑者版本变更日期变更说明
Nekov1.0.02021-12-03创建

文档兼容性

主体版本号文档地址(如果有)
NebulaGraphv2.6.1https://docs.nebula-graph.com.cn/2.6.1/

语句记录

sql
CREATE SPACE IF NOT EXISTS ng_playground1(vid_type=INT64);
sql
CREATE TAG `user` (
  user_id int NOT NULL DEFAULT 0 COMMENT "用户 ID",
  username string NOT NULL DEFAULT "" COMMENT "用户名",
  create_time timestamp NOT NULL DEFAULT 0 COMMENT "创建时间",
  modified_time timestamp NOT NULL DEFAULT 0 COMMENT "变更时间"
) COMMENT = "用户"
sql
CREATE TAG INDEX IF NOT EXISTS user_user_id ON user(user_id);
sql
CREATE TAG user_info (
  intro string NOT NULL DEFAULT "" COMMENT "介绍",
  gender string NOT NULL DEFAULT "" COMMENT "性别",
  species string NOT NULL DEFAULT "" COMMENT "物种",
  create_time timestamp NOT NULL DEFAULT 0 COMMENT "创建时间",
  modified_time timestamp NOT NULL DEFAULT 0 COMMENT "变更时间"
) COMMENT = "用户信息"
sql
CREATE TAG INDEX IF NOT EXISTS user_info_user_id ON user_info;
sql
INSERT VERTEX user (user_id, username, create_time, modified_time) VALUES 2:(2, "Neko2", now(), now());
INSERT VERTEX user (user_id, username, create_time, modified_time) VALUES 1:(1, "Neko1", now(), now());
INSERT VERTEX user_info (intro, gender, species, create_time, modified_time) VALUES 3:("喵呜1", "公", "猫咪", now(), now());
INSERT VERTEX user_info (intro, gender, species, create_time, modified_time) VALUES 4:("喵呜2", "母", "猫咪", now(), now());
sql
CREATE EDGE user_intro (
	user_id int NULL DEFAULT 0 COMMENT "用户 ID"
)  COMMENT = "用户信息"

贡献者

页面历史

撰写