Tagged Questions
The ansi-sql tag has no wiki summary.
12
votes
6answers
5k views
Is there an ANSI SQL alternative to the MYSQL LIMIT keyword?
Is there an ANSI SQL alternative to the MYSQL LIMIT keyword?
The LIMIT keyword limits the number of rows returned by a SELECT e.g:
SELECT * FROM People WHERE Age > 18 LIMIT 2;
returns 2 rows.
...
9
votes
10answers
2k views
ANSI SQL Manual
Can anyone recommend a good ANSI SQL reference manual?
I don't necessary mean a tutorial but a proper reference document to lookup when you need either a basic or more in-depth explanation or ...
7
votes
5answers
799 views
How do you write your applications to be database independent?
My boss asks me to write only ANSI SQL to make it database independent. But I learned that it is not that easy as no database fully ANSI SQL compatible. SQL code can rarely be ported between database ...
5
votes
5answers
693 views
Are all SQL Geospatial implementations database specific?
My team is looking into geospatial features offered by different database platforms.
Are all of the implementations database specific, or is there a ANSI SQL standard, or similar type of standard, ...
4
votes
3answers
584 views
Does the order of tables in a join matter, when LEFT (outer) joins are used?
I would like to confirm that the SQL query
SELECT ....
FROM apples,
oranges
LEFT JOIN kiwis ON kiwis.orange_id = oranges.id,
bananas
WHERE ....
is exactly equivalent to ...
4
votes
1answer
214 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 *" - ...
4
votes
8answers
317 views
SELECT any FROM system
Can any of these queries be done in SQL?
SELECT dates FROM system
WHERE dates > 'January 5, 2010' AND dates < 'January 30, 2010'
SELECT number FROM system
WHERE number > 10 AND number ...
3
votes
3answers
72 views
Is it possible to have an SQL query that uses AGG functions in this way?
Assuming I have the following aggregate functions:
AGG1
AGG2
AGG3
AGG4
Is it possible to write valid SQL (in a db agnostic way) like this:
SELECT [COL1, COL2 ....], AGG1(param1), AGG2(param2) ...
3
votes
4answers
817 views
Number of days between two dates - ANSI SQL
I need a way to determine the number of days between two dates in SQL.
Answer must be in ANSI SQL.
3
votes
2answers
702 views
Standard alternative to CONNECT BY?
I'm trying to convert some Oracle SQL queries to work with (in theory) any SQL database. Some of the queries are hierarchical in nature and are written using CONNECT BY.
Is there a standard SQL ...
2
votes
2answers
70 views
Different number of rows affected when using select or update with the same parameters - PostgreSQL
I have two SQL Statements with the same Join and Where clause, but i have the problem that the select statement gives me a different number of lines (in my case 42) as the update statement will change ...
2
votes
4answers
195 views
Is it possible to write a SQL script for both MySQL and PostgreSQL?
I'd like to write a single SQL script that will run on a default installation of either MySQL or PostgreSQL (versions 5.5 and 9.0, respectively). Is this possible?
I can almost do it by adding SET ...
2
votes
6answers
160 views
Where to put conditionals in ANSI-syntax SQL queries
What's the difference between these two queries? I've been resistant to jumping on the ANSI-syntax bandwagon because I have not been able to unravel various syntactical ambiguities.
Is 1) returning ...
2
votes
2answers
246 views
using ansi sql syntax for formatting Numeric
I am using two different databases for my project,
Oracle and Apache Derby, and am trying as much as possible to use the ANSI SQL syntax supported by both of the databases.
I have a table with a ...
2
votes
2answers
319 views
How to write these two queries for a simple data warehouse, using ANSI SQL?
I am writing a simple data warehouse that will allow me to query the table to observe periodic (say weekly) changes in data, as well as changes in the change of the data (e.g. week to week change in ...
1
vote
3answers
70 views
creating a table only if it's not existing with ANSI sql
I am trying to dynamically create a SQL table only if it's not already existing. I have seen many solutions on the internet but they usually rely on a specific database, while I'm trying to find the ...
1
vote
3answers
437 views
Using variables in Oracle script
There is a complex query which generates a report. The query has several sub queries that generate 3-columns table for different products. Each sub query returns one row. All returned rows then need ...
1
vote
1answer
60 views
Unrolling procedural code into SQL
The act of transforming procedural code into SQL has been of interest to me lately. I know that not absolutely everything is expressable in a turing complete procedural language.
What if you have a ...
1
vote
2answers
401 views
Standard SQL alternative to Oracle DECODE
Is there an ANSI SQL equivalent to Oracle's DECODE function?
Oracle's decode function is the IF-THEN-ELSE construct in SQL.
1
vote
5answers
292 views
Eliminate subquery for average numeric value
Quest
The query selects all the points beginning with "Vancouver" and are within a 5 minute area from the center of all locations beginning with "Vancouver". For example, Vancouver South Fraser, ...
1
vote
2answers
99 views
Early (or re-ordered) re-use of derived columns in a query - is this valid ANSI SQL?
Is this valid ANSI SQL?:
SELECT 1 AS X
,2 * X AS Y
,3 * Y AS Z
Because Teradata (12) can do this, as well as this (yes, crazy isn't it):
SELECT 3 * Y AS Z
,2 * X AS Y
...
1
vote
2answers
417 views
Clone a row with a primary key in SQL?
I am attempting to make some cross-DB(SQL Server and PostgreSQL) compatible SQL. What I am needing to do is clone a row. It is preferable to do it locally on the SQL server without having to pull the ...
1
vote
5answers
123 views
Someway to do `where booleanvalue=false` on both Sql Server and PostgreSQL?
I am attempting to make an application capable of running on both Sql Server and PostgreSQL.
I can not seem to find a common expression that is basically
select * from table where booleancol=false
...
1
vote
2answers
897 views
How to test SQL for validity from the command line?
Is there a good tool for ensuring that an SQL query is valid ANSI SQL, and optionally what DBMSs will fail to interpret it? I've found http://developer.mimer.com/validator but I was wondering whether ...
0
votes
2answers
35 views
ANSI Support of Select Count SQLStatements
I'm wondering if there is a list of supported Select Count SQL statements per the ANSI standard? The below three variations are what I know of. Can the where clause be used on all three below?
SELECT ...
0
votes
5answers
274 views
mysql - quote numbers or not?
For example - I create database and a table from cli and insert some data:
CREATE DATABASE testdb CHARACTER SET 'utf8' COLLATE 'utf8_general_ci';
USE testdb;
CREATE TABLE test (id INT, str ...
0
votes
3answers
107 views
SQL - Select records only with inactive status
I have following requirement.
**---Table A---**
CustID_1 S1
CustID_1 S2
CustID_2 S2
CustID_2 S3
CustID_3 S4
CustID_3 S5
**---Table B---**
S1 1
S2 0
S3 1
S4 ...
0
votes
3answers
109 views
importing data from one MySQl dbto another mySQl Db?
Can you please tell me how to import data from one mySQL Db to another mySQL DB.
Data schema of both database is totally different , the second datbase is the normalized version of first datbase.
...
0
votes
0answers
212 views
Secure multi-tenancy in MySQL application
I have a JSP/MySQL web service where users interact with "processes" -- they can upload data, configure, view reports, etc for a given process. They can also create new processes or run reports that ...