Tagged Questions
7
votes
10answers
463 views
How do I translate a simple boolean statement to SQL?
I have the following database table with information about people, diseases, and drugs:
PERSON_T DISEASE_T DRUG_T
========= ========== ========
...
4
votes
6answers
2k views
Is this the proper way to do boolean test in SQL?
Assume active is a "boolean field" (tiny int, with 0 or 1)
# Find all active users
select * from users where active
# Find all inactive users
select * from users where NOT active
In words, can ...
0
votes
1answer
40 views
An expression of non-boolean type specified in a context where a condition is expected, near ')'
select * from srs_sce
left join sits..srs_cbo as cbostart
on cbostart.cboayrc = scj_ayrc and
cbostart.cbo_crsc = scj_crsc and
cbostart.cbo_blok = scj_blok and
...