We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f249985 commit 3074d99Copy full SHA for 3074d99
sew/column.py
@@ -2,7 +2,18 @@
2
3
4
#%% And also a class for columns
5
-### TODO: Intention for this is to build it into a way to automatically generate conditions in select statements..
+"""
6
+TODO: Intention for this is to build it into a way to automatically generate conditions in select statements..
7
+
8
+1) Within-table case, ColumnProxy operator (ColumnProxy | str)
9
+This should generate a normal condition.
10
11
+2) Cross-table case ColumnProxy == ColumnProxy
12
+This should generate an INNER JOIN.
13
+We then need to see how many INNER JOINS there are,
14
+alias the tables uniquely,
15
+and perform the selects using the aliases.
16
17
class ColumnProxy:
18
"""
19
Class to represent a column in a table.
0 commit comments