Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
121 views

Are SQL ANY and SOME keywords synonyms in all SQL dialects?

In Postgres, ANY and SOME are synonyms when used on the right hand side of a predicate expression. For example, these are the same: column = ANY (SELECT ...) column = SOME (SELECT ...) This is ...
6
votes
1answer
91 views

Does SQL standard specify the order of constraint validation and trigger firing?

I'm curious if I can rely on any particular order of validating NOT NULL, FOREIGN KEY, UNIQUE, CHECK constraints and BEFORE triggers. From experience I know that MySQL first checks NOT NULL, then ...
4
votes
1answer
234 views

Why do I need to explicitly specify all columns in a SQL “GROUP BY” clause - why not “GROUP BY *”?

This has always bothered me - why does the GROUP BY clause in a SQL statement require that I include all non-aggregate columns? These columns should be included by default - a kind of "GROUP BY *" - ...
3
votes
3answers
54 views

Authoritative SQL standard documentation

I'm curious to know some more details about the various SQL standard's, i.e. SQL-92, SQL:99, SQL:2003, SQL:2008 etc. There is a short and useful overview on Wikipedia, with links to very expensive ...
3
votes
0answers
103 views

Why is MySQL (still) not taken seriously as a DBMS by many developers? [closed]

In the past years, I've run into remarks about MySQL not being a DBMS to take seriously by some developers. I've been a MySQL user for quite some time now and I have trouble figuring out why some ...
3
votes
5answers
430 views

How to test sql scripts are standard sql in junit tests?

Is there any way to test that SQL scripts contain standard SQL with java/junit tests? Currently we have sql scripts for creating a database etc. in a Postgres db, but when using hsqldb everything ...
2
votes
2answers
271 views

Is TRUNCATE a DML statement?

Can we classify/say that TRUNCATE belongs to/falls under DML statement? Check here for PostgreSQL TRUNCATE compatibility. NOTE: TRUNCATE is part of SQL standard ANSI SQL 2008 - F200
2
votes
5answers
149 views

Plain SQL vs Dialects

DBMS Vendors use SQL dialect features to differentiate their product, at the same time claiming to support SQL standards. 'Nuff said on this. Is there any example of SQL you have coded that can't be ...