0
votes
Database safety: Intermediary “to_be_deleted” column/table?
This is why, whenever you are editing data by hand, you should BEGIN TRAN, edit your data, check that it looks good (for instance that you didn't delete more data than you were expecting) and then …
0
votes
SQL Question - Possibly Cursor/Join related?
What I would do is open up cursors on the following queries:
SELECT * from table1 order by id
SELECT * from table1 r, table2 t where t.table1_id = r.id order by r.id
SELECT * from t …
2
votes
Tips for getting started with SQL?
If you can, you really want to find someone who knows how to use it, and pick their brains. That's because there are a lot of important principles (eg 3rd normal form) which will are a lot easier …
5
votes
How can my application benefit from temporary tables?
First a disclaimer - my job is reporting so I wind up with far more complex queries than any normal developer would. If you're writing a simple CRUD (Create Read Update Delete) application (this w …
0
votes
Like in CASE statement not evaluating as expected
What a cute bug. I think I know the cause. If I'm right, then you'll get the results you expect from:
SELECT
CASE
WHEN fldField like 'YYY ' -- 7 spaces
THEN 'OTH' …
12
votes
SQL coding style guide
Style is the original programming holy war. However here is my style
SELECT f.foo
, b.bar
, CASE
WHEN f.foo = 'hello'
THEN 'goodbye'
ELSE b.bar
END as som …
3
votes
SQL - fetch the row which has the Max value for a column
I don't have Oracle to test it, but the most efficient solution is to use analytic queries. It should look something like this:
SELECT DISTINCT
UserId
, MaxValue
FROM (
S …
