RE: [PHP-DB] sql problem

2007-12-16 Thread Bastien Koert
http://www.php.net/manual/en/function.number-format.php bastien > Date: Sun, 16 Dec 2007 17:17:41 +0600 > From: [EMAIL PROTECTED] > To: php-db@lists.php.net > Subject: [PHP-DB] sql problem > > my problem in the following code > > INSERT INTO `test` (

Re: [PHP-DB] sql, problem with join and presentation

2004-02-17 Thread Frank Flynn
There are two ways to do what you ask: 1 - run your first query (just the classes no sections) and before the loop to display the results open a new - different connection to the DB then in the loop where you are displaying the results after displaying each class run a query to find all of it's se

RE: [PHP-DB] sql, problem with join and presentation

2004-02-17 Thread Angelo Zanetti
i think the newer versions of MYSQL allow for subselects and I think that is what you want. see www.mysql.net -Original Message- From: mayo [mailto:[EMAIL PROTECTED] Sent: Sunday, February 15, 2004 11:56 PM To: php-db Subject: [PHP-DB] sql, problem with join and presentation Currently

RE: [PHP-DB] SQL problem is killing this newbie

2001-12-11 Thread Rick Emery
The following will list movies seen by each member: SELECT membername,movietitle FROM member,movie WHERE member.memberid=movie.memberid This one lists all members who have seen these 3 movies. SELECT membername FROM member,movie WHERE member.memberid=movie.memberid && movietitle="Star Wars" && mo

RE: [PHP-DB] SQL problem

2001-09-01 Thread Robert Vukovic
tak 31. avgust 2001. 10:04 > To: Robert Vukovic; [EMAIL PROTECTED] > Subject: Re: [PHP-DB] SQL problem > > > Hi, > Are there any error messages? > Just a guess - may be this will work > > Select $tbl_virtual.thumb1,$tbl_descriptions.short_desc FROM >

Re: [PHP-DB] SQL problem

2001-08-31 Thread Dobromir Velev
-Original Message- From: Robert Vukovic <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Friday, August 31, 2001 7:34 AM Subject: RE: [PHP-DB] SQL problem >> Table was created with this >> >> CREATE TABLE `descriptions` ( >> `id_prop

RE: [PHP-DB] SQL problem

2001-08-30 Thread Robert Vukovic
> Table was created with this > > CREATE TABLE `descriptions` ( > `id_property` bigint(20) NOT NULL default '0', > `short_desc` varchar(255) default NULL, > `long_desc` text, > KEY `id_property`(`id_property`), > PRIMARY KEY (`id_property`), > UNIQUE KEY `id_property_2`(`id_property`)

Re: [PHP-DB] sql problem

2001-06-26 Thread Doug Semig
A quick glance suggests to me that it is a nonstandard proprietary extension to SQL that provides a way to set a kind of a variable and use it in a subsequent nonstandard proprietary SQL-looking statement that is awfully procedural. You'll probably want to either consult the documentation for the

RE: [PHP-DB] sql problem

2001-06-26 Thread Mats Remman
@a is here an internal 'session' variable used in sql databases (atleast mysql). simple usage : select @a:=1; -> 1 select @b:=10; -> 10 select @a + @b; -> 11 These variables are used to hold temporary numbers and characters, so the interaction between the script language and the database can

Re: [PHP-DB] sql problem

2001-06-26 Thread Hugh Bothwell
""Fai"" <[EMAIL PROTECTED]> wrote in message 9h90l2$1op$[EMAIL PROTECTED]">news:9h90l2$1op$[EMAIL PROTECTED]... > SELECT @A:=SUM(salary) FROM table1 WHERE type=1; > UPDATE table2 SET summmary=@A WHERE type=1; > > What does @A: mean? > > Thank you very much! They're writing the sum to an SQL vari