简介
SQL 查询视图时无法,字段没有描述,不清楚该字段的具体用途。
解决方法
create or replace view v_users as
select t.username,t.password from tb_users;
comment on column v_users.username is '用户名;
comment on column v_users.password is '密码';
重新查询视图时可以看到不同字段的具体含义。
SQL 查询视图时无法,字段没有描述,不清楚该字段的具体用途。
create or replace view v_users as
select t.username,t.password from tb_users;
comment on column v_users.username is '用户名;
comment on column v_users.password is '密码';
重新查询视图时可以看到不同字段的具体含义。