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)
Row level trigger returning NULL causes ERROR: query has no destination for result data
I have created a before insert trigger that should insert the data into either an existing table partition or create a new partition and then insert the data.
I see that the partition is created but t...
Wolfgang
Votes: 0
Answers: 1
Can you use 'doPost' in a Library?
I'm trying to put a doPost inside an Apps Script library. Is that possible?
It doesn't seem to work like this?
function doGet(e) {
return HtmlService.createHtmlOutput("hello");
}
function...
Dave Reckoning
Votes: 0
Answers: 0
Conditional increment of values in two rows after insert in MySQL
I currently have the following three tables in a football db:
teams(name)
season(name, beginning, end)
game(id, Date, season, hometeam, awayteam, HomeTeamScore, AwayTeamScore)
(hometeam, awayte...

user11626803
Votes: 0
Answers: 2
Why does my SQL trigger that simulates an XOR not work?
I want to have a condition that either the artist or the event in an assignment is null, but it rejects an assignment even though it has an artist.
The trigger:
delimiter $$
CREATE TRIGGER assignment_...
Tobias Hahn
Votes: 0
Answers: 1