數(shù)據(jù)庫筆記:
Cluster --> Catalog --> Schema --> Table
db --> schema A
? ? ?--> schema B
? ? ?--> schema C --> table A
? ? ? ? ? ? ? ? ? ? ? ? ? ? --> table B
? ? ? ? ? ? ? ? ? ? ? ? ? ? --> table C
查詢元數(shù)據(jù)信息:
? ? ? ? show databases; ? // query all databases;
? ? ? ? show schemas; ? ?// query all schemas;
? ? ? ? use test; ? ? ? ? ? ? ? // use test database or test schema;
? ? ? ? show tables; ? ? ? ?// query all tables;
? ? ? ? select * from information_schema.tables where table_name = 'test_user';
? ? ? ? show columns from test_user;
樹形結(jié)構(gòu)設(shè)計
1. id name left right
? ?使用前序遍歷,查詢速度快,但是刪除/插入/修改操作較為慢。
2. id name pid
? ?遞歸查詢速度較慢,刪除/插入/修改速度較快缩抡。