Thread: updating rows while selecting

updating rows while selecting

From
Janning Vygen
Date:
Hi,

i am new to concepts of SQL and postgresql. For tutorial purpose i wrote a
little quotes database with columns:

name, quote, timestamp

a php html page should show every day another quote of the day. it works fine
and like this:

selecting a row with timestamp = today
if there is no row select one without timestamp (this way new quotes inserted
should be shown before older ones).
if there is still no rows the result then update the oldest quote
and ask again.

Is it possible to put this php programm structure into the database?? I tried
many different things but i dont know how to do it. I just always want to
select autmagicall a new quote of the day!

Is there something like an if, then, else statement in SQL? I knwo that SQL
is not a procedural language, but is there data view way to achieve something
like this?

Your help would be a great step for me in understanding SQL.
thanks in advance

Janning
p.s.: (zitate = quotes, zitat = quote, just the german translation...)

<?php
$conn = pg_pconnect ("dbname=cff user=janning");
$result = pg_Exec ($conn, "

SELECT name, zitat FROM zitate where timestamp = CURRENT_DATE;

");
if (! pg_numrows ($result)) {
pg_Exec ($conn, "

UPDATE zitate SET timestamp = CURRENT_DATE WHERE oid    = (SELECT DISTINCT ON
(timestamp) oid from zitate where timestamp = NULL);

");
$result = pg_Exec ($conn, "

SELECT name, zitat FROM zitate where timestamp = CURRENT_DATE;

");
if (! pg_numrows($result)) { pg_Exec ($conn, "

UPDATE zitate SET timestamp = CURRENT_DATE WHERE timestamp =  (
select distinct on (timestamp) timestamp from zitate
where timestamp = (select min(timestamp) from zitate));

");
$result = pg_Exec ($conn, "

SELECT name, zitat FROM zitate where timestamp = CURRENT_DATE;

"); }}}
?>


Moving to 7.1.1

From
Tony Grant
Date:
Hello,

I just wanted to end my day with a big THANK YOU to all the developpers.

I upgraded from 7.1RC4 to 7.1.1 today and it went without a hich!!! In
all the server was down for about 30 minutes the time to check out the
different locale, multibyte and encoding issues that had been troubling
me.

JDBC compiled just fine. And now I have logging working as advertized to
boot. Great work guys!

Cheers

Tony Grant

--
RedHat Linux on Sony Vaio C1XD/S
http://www.animaproductions.com/linux2.html
Macromedia UltraDev with PostgreSQL
http://www.animaproductions.com/ultra.html