python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Selecting fields from multiple tables with Where and Substr
Not sure what I'm doing wrong here. I've been trying all week and can't find the problem. I'm new to oracle so I'm hoping it's something easy I'm missing. My script is below. I'm trying to pull stu...
user17986852
Votes: 0
Answers: 1
Use one of two dates in where clause
I need to delete all records in a table where the CreatedDate or ModifiedDate is greater than x. The logic is as follows:
If ModifiedDate is not null then use this value
Otherwise use the CreatedDate...
Newman
Votes: 0
Answers: 2
Filter result from a single name in a SET with multiple entries
I have a column of SET type made up of creators of comic books.
In PHP, I do a query to get all the comics with a single creator.
If I do a query using WHERE creator = "John Byrne", I can se...

Mehdi Bouhalassa
Votes: 0
Answers: 0
Using Case in WHERE condition MYSQL
Is it possible to use CASE statement in WHERE condition like below?
SELECT act.id_activity FROM activity act
LEFT JOIN work w ON w.id_work = act.id_work
WHERE
w.work_type=1
AND w.work_tender in (1,2)...
wanna
Votes: 0
Answers: 3