Skip to content
This repository has been archived by the owner on Mar 17, 2024. It is now read-only.

Commit

Permalink
Cosmetic Update diff_compare.md
Browse files Browse the repository at this point in the history
  • Loading branch information
3amyatin authored Jan 24, 2024
1 parent 6b16668 commit ebd840a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exasol/diff_compare.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@

select
COLUMN_NAME,
listagg(case when T='T1' then COLUMN_TYPE end) as T1,
listagg(case when T='T2' then COLUMN_TYPE end) as T2
listagg(case T when 'T1' then COLUMN_TYPE end) as T1,
listagg(case T when 'T2' then COLUMN_TYPE end) as T2
from (
select 'T1' as T, T1_only.* from (select * from T1 minus select * from T2) as T1_only
union all select 'T2', T2_only.* from (select * from T2 minus select * from T1) as T2_only
Expand Down

0 comments on commit ebd840a

Please sign in to comment.