I don't quite understand how this command works. The book I'm using doesn't give many details. What I'd like to do is to allow for 3 of the 4 columns in the datagrid to be edit-able at once (ideally for all the rows, but I'd be happy with one). Also how do I give the Edit button a CSS-Class? I...
swampBoogie
Thank you very much for the code the NOT EXISTS turned out to be the key (row expressions is apparently not allowed in my DBMS which is MS Enterprise Manager Management Console v1.2). The application runs much, much faster when it can grab everything at once instead of doing it one...
I am trying to get a record set that does not include values that are considered blocked. Normally I would do this:
SELECT Value_1, Value_2, Value_3, Value_4, Value_5
FROM tbData
WHERE Value_1 NOT IN (SELECT Value_1 FROM tbBlockedValues)
The problem is, tbBlockedValues has 2 fields and it has...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.