Re: Nice Quote from Celko
От | Gavin Flower |
---|---|
Тема | Re: Nice Quote from Celko |
Дата | |
Msg-id | 5060BD85.3020307@archidevsys.co.nz обсуждение исходный текст |
Ответ на | Re: Nice Quote from Celko (Robert Bernier <robert7390@comcast.net>) |
Ответы |
Re: Nice Quote from Celko
|
Список | pgsql-advocacy |
On 25/09/12 03:31, Robert Bernier wrote:
ThanksOn Saturday, September 22, 2012 01:54:08 pm Gavin Flower wrote:On 23/09/12 03:31, Richard Broersma wrote:"Developers are more likely to port SQL Server to Postgres because it is open source, supports more ANSI features, runs on more platforms, uses a different ACID model and has a great optimizer. " http://www.sqlservercentral.com/articles/Stairway+Series/89991/It wanted me to login to read it.Read it using elinks, that's what I did. Robert
I have not checked everything, but noted that..
It claims
"[...]
The model for temporary tables is weaker than T-SQL in some ways. ... You cannot create a temp table with column declarations, but only with a query..
[...]"
this obviously false:
CREATE TEMP TABLE tem_tab
(
id SERIAL PRIMARY KEY,
payload text
);
INSERT INTO tem_tab (payload)
VALUES
('first'),
('second'),
('third'),
('fourth'),
('fifth'),
('sixth'),
('seventh'),
('eighth');
SELECT * FROM tem_tab ORDER BY payload;
works in PostgreSQL
В списке pgsql-advocacy по дате отправления: