I have table in Teradata SQL like below:
ID | col1 | col2
-------------------
111 | A | 54
222 | B | 8
333 | C | 17
444 | B | 44
555 | A | 1
And I have list of ID of clients:
myList = ['111', '222', '333']
And I need to select ID of clients from table which are on myList and meet requirements:
So as a result I need like below:
ID | col1 | col2
--------------------
111 | A | 54
Because ID = 111 and is on myList
, col1 is "A" or "B" and in col2 is value bigger than 10.
How can I do that in Teradata SQL ? Probably in subquery ?
There is no need for a subquery.
All conditions can be combined with the AND
operator in the WHERE
clause of a simple SELECT
statement:
SELECT *
FROM tablename
WHERE ID IN ('111', '222', '333')
AND col1 IN ('A', 'B')
AND col2 > 10