Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
10answers
4k views

Why isn't SQL ANSI-92 standard better adopted over ANSI-89?

At every company I have worked at, I have found that people are still writing their SQL queries in the ANSI-89 standard: select a.id, b.id, b.address_1 from person a, address b where a.id = b.id ...
2
votes
2answers
238 views

Ensure SQL-92 on Access 2000 mdb to SQL Server under Access 2010

Due to circumstances not fully under my control, I have to develop ACCESS queries which will be stored in an Access 2000 MDB but which may be developed under any one of: Access 2000, 2002, 2003, 2007, ...
2
votes
1answer
185 views

SQL-92 Query to find earliest date dependent on column value changing

I am querying a data system with an OLEDB interface that supports SQL92. My query problem is equivalent to the one solved here: ...
0
votes
4answers
352 views

sql ansi-92 Compliant Question

Are the following select statements SQL92 compliant? SELECT table1.id, table2.id,* FROM table1, table2 WHERE table1.id = table2.id SELECT table1.Num, table2.id,* FROM table1, table2 WHERE table1.Num ...