sql-except Questions
15
Solved
Is there any RDBMS that implements something like SELECT * EXCEPT? What I'm after is getting all of the fields except a specific TEXT/BLOB field, and I'd like to just select everything else.
Almos...
Portemonnaie asked 5/1, 2009 at 17:15
2
Solved
I'm trying to use the EXCEPT keyword in Oracle 10.1.0.2.0, but kept getting error 'Unknown Command'. I've tried googling around and someone said the keyword is MINUS, so I used MINUS, instead, but ...
Laurent asked 16/3, 2013 at 2:48
2
Solved
I understand, that INNER JOIN is made for referenced keys and INTERSECT is not. But afaik in some cases, both of them can do the same thing. So, is there a difference (in performance or anyth...
Abuttal asked 9/8, 2018 at 21:2
3
This query works:
mysql> SELECT s.sno FROM students s;
+------+
| sno |
+------+
| 1 |
| 2 |
| 3 |
| 4 |
| 5 |
| 6 |
| 7 |
| 8 |
| 9 |
| 10 |
+------+
10 rows in set (0.00 sec) ...
Inaudible asked 18/4, 2013 at 20:22
1
© 2022 - 2024 — McMap. All rights reserved.