ANSI SQL is the American National Standards Institute standardized Structured Query Language. ANSI SQL is the base for several different SQL languages such as T-SQL and PL/SQL.
0
votes
2answers
36 views
What is a Common Table Expression used for?
WITH Extracted_Sessions ( a,b ) AS
(
select a,b from db.tblnm
)
What does this SQL do? Could some one explain please?
0
votes
0answers
26 views
Duplicating records for a date range
I have to duplicate records from week level data and push it back so that it fills in the previous week with the data. So i get a row for 1/6 which is a Saturday, and then fill in all the columns to ...
5
votes
1answer
187 views
ANSI SQL version of SELECT TOP 1
Is there an ANSI SQL compliant version of SQL SERVER's SELECT TOP n?
2
votes
0answers
62 views
Are there any plans to support Netezza in JOOQ? [closed]
I was looking for Netezza dialect for JOOQ and soon realized that the database is not yet supported.
1) Are there any plans to support Netezza ?
2) What if I only want to use strandard ANSI SQL only ...
1
vote
3answers
76 views
Error on an ANSI SQL Statement
select t2.s_studentreference
, t1.p_surname
, t1.p_forenames
, t3.e_reference
, t3.e_name
from capd_a t1
right outer join capd_b t2
on (t2.s_id = t1.p_id)
...
1
vote
2answers
105 views
Retention Tracking
Let’s say I have an Angry Birds game.
I want to know how many players are buying the ‘mighty eagle’ weapon each month out of the players which bought the mighty eagle weapon in the previous months in ...
0
votes
1answer
208 views
ANSI SQL PORTABILITY TO HADOOP HIVE conversion tool or macro
I am working on hadoop hive solutions. My requirement is to convert ansi sql queries to hive queries by using a tool or excel macro. Is there any tool/macro exist? if yes, what are they; if not need ...
2
votes
1answer
266 views
column order in SELECT * statement - guaranteed?
I am using an ORM (sqlalchemy) to fetch data from a PG database. I want to avoid specifying all the table column names in my hand crafted SQL statements*.
My assumption so far is that the returned ...
1
vote
1answer
1k views
SQL: aggregate functions with DATE type columns
I stumbled upon a question (in a test) about which aggregate functions are applicable to DATE type columns. So, as I understand it, COUNT will just count the number of rows, and MIN and MAX return the ...
2
votes
2answers
279 views
Is 'INDEX' valid SQL ANSI ISO standard keyword / reserved word?
I've done some research on whether 'INDEX' is a keyword in ANSI SQL but I have not had any luck, especially with the 2008 and the 2011 standard.
Anyone know for sure if this is a valid ANSI ISO SQL ...
14
votes
1answer
770 views
How to rewrite IS DISTINCT FROM and IS NOT DISTINCT FROM?
How do you rewrite expressions containing the standard IS DISTINCT FROM and IS NOT DISTINCT FROM operators in SQL implementations such as Microsoft SQL Server 2008R2 that do not support them?
0
votes
2answers
39 views
Specified record in top of results list
Task: selecting specified record in top of results list
my ugly variant:
(select * from mytable where id = 42)
union all
(select * from mytable where id != 42 order by id)
besides of ansi query ...
0
votes
2answers
252 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 ...
3
votes
3answers
124 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) ...
2
votes
2answers
216 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 ...
1
vote
6answers
3k 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 ...
1
vote
3answers
261 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 ...
0
votes
3answers
148 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
255 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 databases is totally different, the second database is the normalized version of first database.
...
1
vote
2answers
486 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 ...
1
vote
3answers
8k 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 ...
5
votes
3answers
4k 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 ...
2
votes
4answers
431 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 ...
4
votes
10answers
115 views
Is there a SQL ANSI way of starting a search at the end of table?
In a certain app I must constantly query data that are likely to be amongst the last inserted rows. Since this table is going to grow a lot, I wonder if theres a standard way of optimizing the queries ...
1
vote
1answer
76 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
2k 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.
2
votes
6answers
266 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
421 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
1k 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
5answers
387 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, ...
5
votes
1answer
825 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 *" - ...
1
vote
2answers
197 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
...
4
votes
8answers
595 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 ...
2
votes
3answers
700 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
377 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
...
3
votes
4answers
3k 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.
11
votes
10answers
5k 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 ...
4
votes
2answers
2k 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 ...
5
votes
5answers
793 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, ...
14
votes
6answers
8k 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.
...
7
votes
6answers
7k views
AutoIncrement fields on databases without autoincrement field
In MS Sql Server is easy create autoincrement fields. In my systems I stopped to use autoincrement fields for primary keys, and now I use Guid's. It was awesome, I've got a lot of advantages with that ...
0
votes
1answer
734 views
Sql Ansi to manage DateTime values
I'm developing a multi-database system.
I want the difference between two dates in seconds.
In SQL Server I got:
DATEDIFF(second,stardate,enddate)
In MySql:
TIME_TO_SEC(TIMEDIFF(stardate,enddate))
...
1
vote
2answers
1k 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 ...
7
votes
5answers
1k 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 ...
41
votes
13answers
9k 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
...
