qualify names in a sentence, ussing alias (if present) or table name
qualify names in a sentence, ussing alias (if present) or table name
2
votes
Leonardo
shared this idea
This feature is already implemented in SQL Complete 2.0 (Standard edition)
-
Leonardo commented
convert
SELECT a, b, c FROM t1 INNER JOIN t2 as b ON x1 = b1...
inSELECT t1.a, t1.b, b.c FROM t1 INNER JOIN t2 as b ON t1.x1 = b.b1 ...