Hello everyone,
I have a table that goes like this:
123
456
789
(...)
I then want to connect to a DB table and perform a SELECT statement, using all the values from that table, for example:
SELECT * FROM db.Table WHERE Number = '123' and Number = '456' and Number = '789'
Any suggestion on how to do this? Thank you!