1
vote
4answers
73 views
How to use a view name stored in a field for an sql query ?
I have a table with a view_name field (varchar(256)) and I would like to use that field in an sql query.
Example :
TABLE university_members
id | type | view_name | c …
0
votes
1answer
129 views
C#: Executing a SQL script stored as a resource
Newbie question : I would like to store lengthy .sql scripts in my solution and execute them programmatically. I've already figured out how to execute a string containing my sql script but I haven' …
0
votes
Search multiple list for missing entries
SELECT letter,number FROM lettersTable l , numbersTable n WHERE
(
SELECT count(*)
FROM
(
SELECT *
FROM combinationsTable
WHERE l.letter=combinationsTable.letter AND n.numbe …
