JetBrains Rider/Intellij... Disabling database schema/table names being prepended with autocomplete
Preferences/Settings
Editor > General > Code Completion > SQL > Qualify object with > Table > Never.
Preferences/Settings
Editor > General > Code Completion > SQL > Qualify object with > Table > Never.
Don't waste time; here's the sample code with the Oracle database.
SELECT * FROM SampleTable WHERE sample_field in (7,3,4,6) ORDER BY INSTR(',7,3,4,6,', ',' || sample_field || ',');
Unsaved creations
https://photos.google.com/unsaved
Possibly all creations?
In MySQL, we can
SELECT IF(A IS NULL, "something", A) FROM some_table;
If you want to do a similar thing in PL/SQL, you need to
SELECT (CASE WHEN A IS NULL THEN "something" ELSE A END) FROM some_table;
If you want to get the first non-null value from several fields, you have a better choice than using the CASE keyword.
SELECT COALESCE(A, B) FROM some_table
see more information about the Oracle COALESCE function
PS: If you use a remote desktop, Press Alt + Ctrl + End instead. It's actually not a fix; it's only a workaround. Anyway, we cannot expect there to be a perfect fix for that. Microsft just sucks.