Unusual Query Help Request

  • Follow


I have a query where I'm attempting to pull data from 3 different
tables using php and mysql.  I had hoped to have a unique identifier
to help ensure referential integrity but it appears that unique number
won't always be a possibility so I won't bank on it at all.  

I have two like fields in these two tables 'area' and 'equipment' and
though there is a possibility of having two different pieces of
equipment within two areas called by the same thing, the possibility
of having two pieces of equipment called the same thing if I can link
to that 'area' column is impossible, hence my unique id

Below is what my existing code looks like that works but doesn't link
the 'area' column of a table to the 'equipment' column.  Didn't notice
a problem until several entries to the db.  Now I can see that I must
link the two columns within the individual tables to form a unique
identifier for those particular table rows within the three tables.

------------------------------------------
<?php
require_once('generic_connect.php');
$DBname = "Equipment";
$area = $_POST['area'];

mysql_connect($DBhost, $DBuser, $DBpass) or die("Unable to connect to
host $DBhost");
mysql_select_db($DBname) or die("Unable to select database $DBname");

$query = "SELECT conveyors.equipname, conveyors.equipno,
conveyors.mcc, conveyors.gb, conveyors.lube, conveyors.gbsize,
conveyors.brgtype, conveyors.brgqty, motors.hp, motors.frame,
motors.amps, motors.rpm, equipcontacts.equipmanu,
equipcontacts.smodel, equipcontacts.sserial, equipcontacts.vendphone
             FROM conveyors, motors, equipcontacts
	WHERE conveyors.equipname = motors.equipname and
conveyors.equipname = equipcontacts.equipname ";
	if ($area != "All") $query .= "and (conveyors.area='$area' or
motors.area='$area' or equipcontacts.area='$area')";
$result = mysql_query($query);
----------------------------------

I would have hoped that linking the two columns within each table may
be as simple as:
WHERE conveyors.area.equipname = motors.area.equipname and
conveyors.area.equipname = equipcontacts.area.equipname ";

but no such luck.  My tables are 'conveyors', 'motors' and
'equipcontacts'.

thanks for any replies.
cov
0
Reply cov 11/9/2007 3:01:49 PM

cov wrote:
> I have a query where I'm attempting to pull data from 3 different
> tables using php and mysql.  I had hoped to have a unique identifier
> to help ensure referential integrity but it appears that unique number
> won't always be a possibility so I won't bank on it at all.  
> 
> I have two like fields in these two tables 'area' and 'equipment' and
> though there is a possibility of having two different pieces of
> equipment within two areas called by the same thing, the possibility
> of having two pieces of equipment called the same thing if I can link
> to that 'area' column is impossible, hence my unique id
> 
> Below is what my existing code looks like that works but doesn't link
> the 'area' column of a table to the 'equipment' column.  Didn't notice
> a problem until several entries to the db.  Now I can see that I must
> link the two columns within the individual tables to form a unique
> identifier for those particular table rows within the three tables.
> 
> ------------------------------------------
> <?php
> require_once('generic_connect.php');
> $DBname = "Equipment";
> $area = $_POST['area'];
> 
> mysql_connect($DBhost, $DBuser, $DBpass) or die("Unable to connect to
> host $DBhost");
> mysql_select_db($DBname) or die("Unable to select database $DBname");
> 
> $query = "SELECT conveyors.equipname, conveyors.equipno,
> conveyors.mcc, conveyors.gb, conveyors.lube, conveyors.gbsize,
> conveyors.brgtype, conveyors.brgqty, motors.hp, motors.frame,
> motors.amps, motors.rpm, equipcontacts.equipmanu,
> equipcontacts.smodel, equipcontacts.sserial, equipcontacts.vendphone
>              FROM conveyors, motors, equipcontacts
> 	WHERE conveyors.equipname = motors.equipname and
> conveyors.equipname = equipcontacts.equipname ";
> 	if ($area != "All") $query .= "and (conveyors.area='$area' or
> motors.area='$area' or equipcontacts.area='$area')";
> $result = mysql_query($query);
> ----------------------------------
> 
> I would have hoped that linking the two columns within each table may
> be as simple as:
> WHERE conveyors.area.equipname = motors.area.equipname and
> conveyors.area.equipname = equipcontacts.area.equipname ";
> 
> but no such luck.  My tables are 'conveyors', 'motors' and
> 'equipcontacts'.
> 
> thanks for any replies.
> cov
> 

Table definitions would help...

-- 
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

0
Reply Jerry 11/9/2007 9:31:09 PM


On Fri, 09 Nov 2007 16:31:09 -0500, Jerry Stuckle
<jstucklex@attglobal.net> wrote:

>Table definitions would help...

Table type is innoDB, character set is utf-u unicode, and fields are
varchar.  Each table the same where 'type' is concerned and 'area' is
always the column next to 'equipment'.  Table's were originated using
default settings with phpMyAdmin 2.6.2  thanks
0
Reply cov 11/10/2007 3:20:37 AM

cov wrote:
> On Fri, 09 Nov 2007 16:31:09 -0500, Jerry Stuckle
> <jstucklex@attglobal.net> wrote:
> 
>> Table definitions would help...
> 
> Table type is innoDB, character set is utf-u unicode, and fields are
> varchar.  Each table the same where 'type' is concerned and 'area' is
> always the column next to 'equipment'.  Table's were originated using
> default settings with phpMyAdmin 2.6.2  thanks

He meant what are the column names in the tables... along with the 
datatype of each column   (describe <tablename> )
0
Reply Michael 11/10/2007 4:20:38 AM

On Fri, 09 Nov 2007 22:20:38 -0600, Michael Austin
<notknown@thistime.inf> wrote:


>He meant what are the column names in the tables... along with the 
>datatype of each column   (describe <tablename> )


Ahh, thanks... :-)

table names are 'conveyors', 'motors', 'equipcontacts'
0
Reply cov 11/10/2007 4:58:21 AM

cov wrote:
> On Fri, 09 Nov 2007 16:31:09 -0500, Jerry Stuckle
> <jstucklex@attglobal.net> wrote:
> 
>> Table definitions would help...
> 
> Table type is innoDB, character set is utf-u unicode, and fields are
> varchar.  Each table the same where 'type' is concerned and 'area' is
> always the column next to 'equipment'.  Table's were originated using
> default settings with phpMyAdmin 2.6.2  thanks
> 

Which isn't your table definitions, and tells me absolutely nothing 
about your problem.

-- 
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

0
Reply Jerry 11/10/2007 5:01:21 AM

cov wrote:
> On Fri, 09 Nov 2007 22:20:38 -0600, Michael Austin
> <notknown@thistime.inf> wrote:
> 
> 
>> He meant what are the column names in the tables... along with the 
>> datatype of each column   (describe <tablename> )
> 
> 
> Ahh, thanks... :-)
> 
> table names are 'conveyors', 'motors', 'equipcontacts'
> 

Which still tells me nothing...

-- 
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

0
Reply Jerry 11/10/2007 5:01:59 AM

On Sat, 10 Nov 2007 00:01:21 -0500, Jerry Stuckle
<jstucklex@attglobal.net> wrote:

>cov wrote:
>> On Fri, 09 Nov 2007 16:31:09 -0500, Jerry Stuckle
>> <jstucklex@attglobal.net> wrote:
>> 
>>> Table definitions would help...
>> 
>> Table type is innoDB, character set is utf-u unicode, and fields are
>> varchar.  Each table the same where 'type' is concerned and 'area' is
>> always the column next to 'equipment'.  Table's were originated using
>> default settings with phpMyAdmin 2.6.2  thanks
>> 
>
>Which isn't your table definitions, and tells me absolutely nothing 
>about your problem.

Perhaps you could help.  How might I find the table definitions?
0
Reply cov 11/10/2007 6:43:13 AM

On Sat, 10 Nov 2007 07:43:13 +0100, cov <coverlandNS914@yahoo.com> wrote:

> On Sat, 10 Nov 2007 00:01:21 -0500, Jerry Stuckle
> <jstucklex@attglobal.net> wrote:
>
>> cov wrote:
>>> On Fri, 09 Nov 2007 16:31:09 -0500, Jerry Stuckle
>>> <jstucklex@attglobal.net> wrote:
>>>
>>>> Table definitions would help...
>>>
>>> Table type is innoDB, character set is utf-u unicode, and fields are
>>> varchar.  Each table the same where 'type' is concerned and 'area' is
>>> always the column next to 'equipment'.  Table's were originated using
>>> default settings with phpMyAdmin 2.6.2  thanks
>>>
>>
>> Which isn't your table definitions, and tells me absolutely nothing
>> about your problem.
>
> Perhaps you could help.  How might I find the table definitions?

DESCRIBE tablename;
-- 
Rik Wasmus
0
Reply Rik 11/10/2007 5:13:17 PM

On Sat, 10 Nov 2007 18:13:17 +0100, "Rik Wasmus"
<luiheidsgoeroe@hotmail.com> wrote:


>DESCRIBE tablename;

Each table has an id field that is an INT - this field auto-increments
and is the primary key field for each table.  All others are varchar
25 limit w/no other key set.  Zero decimals and allow null not set.
thanks
0
Reply cov 11/10/2007 7:34:21 PM

cov wrote:
> On Sat, 10 Nov 2007 18:13:17 +0100, "Rik Wasmus"
> <luiheidsgoeroe@hotmail.com> wrote:
> 
> 
>> DESCRIBE tablename;
> 
> Each table has an id field that is an INT - this field auto-increments
> and is the primary key field for each table.  All others are varchar
> 25 limit w/no other key set.  Zero decimals and allow null not set.
> thanks
> 

No, issue the DESCRIBE command for each table and paste the output here.

-- 
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

0
Reply Jerry 11/10/2007 8:19:23 PM

Jerry Stuckle <jstucklex@attglobal.net> wrote in 
news:57ydndMGpf3Tj6vanZ2dnUVZ_rzinZ2d@comcast.com:

> 
> No, issue the DESCRIBE command for each table and paste the output here.
> 

REDUNDANCY  is the best way to teach idiots.
REDUNDANCY  is the best way to teach idiots.
REDUNDANCY  is the best way to teach idiots.
REDUNDANCY  is the best way to teach idiots.
REDUNDANCY  is the best way to teach idiots.
REDUNDANCY  is the best way to teach idiots.

You can lead some folks to knowledge, but you can't always make them think.
0
Reply Ana 11/11/2007 12:36:17 AM

On Sun, 11 Nov 2007 00:36:17 GMT, "Ana C. Dent"
<anacedent@hotmail.com> wrote:

>REDUNDANCY  is the best way to teach idiots.
>REDUNDANCY  is the best way to teach idiots.
>REDUNDANCY  is the best way to teach idiots.
>REDUNDANCY  is the best way to teach idiots.
>REDUNDANCY  is the best way to teach idiots.
>REDUNDANCY  is the best way to teach idiots.
>
>You can lead some folks to knowledge, but you can't always make them think.

Is this ng run by a small group of 'experts' who have no tolerance for
anyone else who hasn't achieved a level of expertise or respect to be
considered part of existing prominent 'peer group'?  Is a response
such as yours in any way better than the 'spam', 'trolling' etc so
often frowned upon on usenet these days?  Will your flaming me in any
way achieve any positive outcome or just result in a back and forth
negative reciprocation until someone capitulates or just goes away?
If my posts seem entirely too elementary for you to the point where
they upset you, please do us both a great service and skip by onto the
higher level of posting satisfaction that brings you here in the first
place.
0
Reply cov 11/11/2007 4:14:24 AM

On Nov 11, 4:14 am, cov <coverlandNS...@yahoo.com> wrote:
> On Sun, 11 Nov 2007 00:36:17 GMT, "Ana C. Dent"
>
> <anaced...@hotmail.com> wrote:
> >REDUNDANCY  is the best way to teach idiots.
> >REDUNDANCY  is the best way to teach idiots.
> >REDUNDANCY  is the best way to teach idiots.
> >REDUNDANCY  is the best way to teach idiots.
> >REDUNDANCY  is the best way to teach idiots.
> >REDUNDANCY  is the best way to teach idiots.
>
> >You can lead some folks to knowledge, but you can't always make them think.
>
> Is this ng run by a small group of 'experts' who have no tolerance for
> anyone else who hasn't achieved a level of expertise or respect to be
> considered part of existing prominent 'peer group'?  Is a response
> such as yours in any way better than the 'spam', 'trolling' etc so
> often frowned upon on usenet these days?  Will your flaming me in any
> way achieve any positive outcome or just result in a back and forth
> negative reciprocation until someone capitulates or just goes away?
> If my posts seem entirely too elementary for you to the point where
> they upset you, please do us both a great service and skip by onto the
> higher level of posting satisfaction that brings you here in the first
> place.

No. You're just very, very stupid.


mysql> DESCRIBE my_table;
+--------+----------+------+-----+---------+-------+
| Field  | Type     | Null | Key | Default | Extra |
+--------+----------+------+-----+---------+-------+
| id     | int(11)  | NO   | PRI |         |       |
| dstart | datetime | NO   |     |         |       |
| dend   | datetime | NO   |     |         |       |
+--------+----------+------+-----+---------+-------+
3 rows in set (0.62 sec)


0
Reply strawberry 11/11/2007 12:37:57 PM

Ana C. Dent wrote:
> Jerry Stuckle <jstucklex@attglobal.net> wrote in 
> news:57ydndMGpf3Tj6vanZ2dnUVZ_rzinZ2d@comcast.com:
> 
>> No, issue the DESCRIBE command for each table and paste the output here.
>>
> 
> REDUNDANCY  is the best way to teach idiots.
> REDUNDANCY  is the best way to teach idiots.
> REDUNDANCY  is the best way to teach idiots.
> REDUNDANCY  is the best way to teach idiots.
> REDUNDANCY  is the best way to teach idiots.
> REDUNDANCY  is the best way to teach idiots.
> 
> You can lead some folks to knowledge, but you can't always make them think.
> 

That was completely uncalled for.  Obviously the op is not familiar with 
  MySQL commands.  Not everyone who posts here is an expert.

-- 
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

0
Reply Jerry 11/11/2007 2:13:14 PM

On Fri, 09 Nov 2007 16:31:09 -0500, Jerry Stuckle
<jstucklex@attglobal.net> wrote:

>Table definitions would help...

Like these, correct?
0
Reply cov 11/12/2007 2:18:56 PM

On Fri, 09 Nov 2007 16:31:09 -0500, Jerry Stuckle
<jstucklex@attglobal.net> wrote:


>Table definitions would help...

Couldn't post the attachment directly to the group... Such as this,
correct?  

http://home.nctv.com/ajns/DESCRIBE.JPG

0
Reply cov 11/12/2007 2:23:10 PM

cov wrote:
> On Fri, 09 Nov 2007 16:31:09 -0500, Jerry Stuckle
> <jstucklex@attglobal.net> wrote:
> 
>> Table definitions would help...
> 
> Like these, correct?
> 

No, just copy and past the output into your message.

-- 
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

0
Reply Jerry 11/12/2007 2:50:43 PM

cov wrote:
> I have a query where I'm attempting to pull data from 3 different
> tables using php and mysql.  I had hoped to have a unique identifier
> to help ensure referential integrity but it appears that unique number
> won't always be a possibility so I won't bank on it at all.  
> 
> I have two like fields in these two tables 'area' and 'equipment' and
> though there is a possibility of having two different pieces of
> equipment within two areas called by the same thing, the possibility
> of having two pieces of equipment called the same thing if I can link
> to that 'area' column is impossible, hence my unique id
> 
> Below is what my existing code looks like that works but doesn't link
> the 'area' column of a table to the 'equipment' column.  Didn't notice
> a problem until several entries to the db.  Now I can see that I must
> link the two columns within the individual tables to form a unique
> identifier for those particular table rows within the three tables.
> 
> ------------------------------------------
> <?php
> require_once('generic_connect.php');
> $DBname = "Equipment";
> $area = $_POST['area'];
> 
> mysql_connect($DBhost, $DBuser, $DBpass) or die("Unable to connect to
> host $DBhost");
> mysql_select_db($DBname) or die("Unable to select database $DBname");
> 
> $query = "SELECT conveyors.equipname, conveyors.equipno,
> conveyors.mcc, conveyors.gb, conveyors.lube, conveyors.gbsize,
> conveyors.brgtype, conveyors.brgqty, motors.hp, motors.frame,
> motors.amps, motors.rpm, equipcontacts.equipmanu,
> equipcontacts.smodel, equipcontacts.sserial, equipcontacts.vendphone
>              FROM conveyors, motors, equipcontacts
> 	WHERE conveyors.equipname = motors.equipname and
> conveyors.equipname = equipcontacts.equipname ";
> 	if ($area != "All") $query .= "and (conveyors.area='$area' or
> motors.area='$area' or equipcontacts.area='$area')";
> $result = mysql_query($query);
> ----------------------------------
> 
> I would have hoped that linking the two columns within each table may
> be as simple as:
> WHERE conveyors.area.equipname = motors.area.equipname and
> conveyors.area.equipname = equipcontacts.area.equipname ";
> 
> but no such luck.  My tables are 'conveyors', 'motors' and
> 'equipcontacts'.
> 
> thanks for any replies.
> cov

now that we have seen you table definitions - there are several ways to 
possibly concatenate the colums when doing your searches like ANSI 
Standard concatenate using the double "pipe" symbol:

area.conveyors||equipname.conveyors = area.motors||equipname.motors
and area.conveyors||equipname.conveyors = area.equipcontacts || 
equipname.equipcontacts "

Also see the Mysql docs for concat statement.
0
Reply Michael 11/12/2007 8:28:31 PM

On Nov 11, 1:36 am, "Ana C. Dent" <anaced...@hotmail.com> wrote:
> JerryStuckle <jstuck...@attglobal.net> wrote innews:57ydndMGpf3Tj6vanZ2dnUVZ_rzinZ2d@comcast.com:
>
>
>
> > No, issue the DESCRIBE command for each table and paste the output here.
>
> REDUNDANCY  is the best way to teach idiots.
> REDUNDANCY  is the best way to teach idiots.
> REDUNDANCY  is the best way to teach idiots.
> REDUNDANCY  is the best way to teach idiots.
> REDUNDANCY  is the best way to teach idiots.
> REDUNDANCY  is the best way to teach idiots.
>
> You can lead some folks to knowledge, but you can't always make them think.
Careful there, Ana.
When left without arguments, Jerry will resort to beating you up as he
did with his wife:

Court System:   DISTRICT COURT FOR MONTGOMERY COUNTY - CIVIL SYSTEM
Case Number:    0602SP019022003 Claim Type:DOMESTIC VIOLENCE
Complaint No:   001(STUCKLE, ELIZABETH M) Vs:(STUCKLE, JERRY D )

0
Reply 1001 11/13/2007 11:33:55 AM

1001 Webs wrote:
> On Nov 11, 1:36 am, "Ana C. Dent" <anaced...@hotmail.com> wrote:
>> JerryStuckle <jstuck...@attglobal.net> wrote innews:57ydndMGpf3Tj6vanZ2dnUVZ_rzinZ2d@comcast.com:
>>
>>
>>
>>> No, issue the DESCRIBE command for each table and paste the output here.
>> REDUNDANCY  is the best way to teach idiots.
>> REDUNDANCY  is the best way to teach idiots.
>> REDUNDANCY  is the best way to teach idiots.
>> REDUNDANCY  is the best way to teach idiots.
>> REDUNDANCY  is the best way to teach idiots.
>> REDUNDANCY  is the best way to teach idiots.
>>
>> You can lead some folks to knowledge, but you can't always make them think.
> Careful there, Ana.
> When left without arguments, Jerry will resort to beating you up as he
> did with his wife:
> 
> Court System:   DISTRICT COURT FOR MONTGOMERY COUNTY - CIVIL SYSTEM
> Case Number:    0602SP019022003 Claim Type:DOMESTIC VIOLENCE
> Complaint No:   001(STUCKLE, ELIZABETH M) Vs:(STUCKLE, JERRY D )
> 
> 

ROFLMAO!  This troll is following me around all over the internet now!

For those who don't know him, he's Ahmed Hendy, 35 Avda America, Madrid, 
Spain.  He thinks he's a web designer/developer, but he isn't.

He's just another troll.  But he isn't even as smart as the hatter.


-- 
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

0
Reply Jerry 11/13/2007 12:41:20 PM

On Nov 13, 1:41 pm, Jerry Stuckle <jstuck...@attglobal.net> wrote:
> 1001 Webs wrote:
> > On Nov 11, 1:36 am, "Ana C. Dent" <anaced...@hotmail.com> wrote:
> >> JerryStuckle <jstuck...@attglobal.net> wrote innews:57ydndMGpf3Tj6vanZ2dnUVZ_rzinZ2d@comcast.com:
>
> >>> No, issue the DESCRIBE command for each table and paste the output here.
> >> REDUNDANCY  is the best way to teach idiots.
> >> REDUNDANCY  is the best way to teach idiots.
> >> REDUNDANCY  is the best way to teach idiots.
> >> REDUNDANCY  is the best way to teach idiots.
> >> REDUNDANCY  is the best way to teach idiots.
> >> REDUNDANCY  is the best way to teach idiots.
>
> >> You can lead some folks to knowledge, but you can't always make them think.
> > Careful there, Ana.
> > When left without arguments,Jerrywill resort to beating you up as he
> > did with his wife:
>
> > Court System:   DISTRICT COURT FOR MONTGOMERY COUNTY - CIVIL SYSTEM
> > Case Number:    0602SP019022003 Claim Type:DOMESTIC VIOLENCE
> > Complaint No:   001(STUCKLE, ELIZABETH M) Vs:(STUCKLE,JERRYD )
>
> ROFLMAO!  This troll is following me around all over the internet now!
>
> For those who don't know him, he's Ahmed Hendy, 35 Avda America, Madrid,
> Spain.  He thinks he's a web designer/developer, but he isn't.


Taxpayer Services Division

Entity Name: SMARTECH HOMES, INC.
Dept ID #: D07297567

Principal Office (Current): 9920 BRIXTON LANE, BETHESDA, MD 20817
Resident Agent (Current): JERRY D. STUCKLE, 9920 BRIXTON LANE,
BETHESDA, MD 20817

DEPT. ACTION - FORFEITURE 	10/06/2006 	12:03-AM
THE ENTITY WAS FORFEITED FOR FAILURE TO FILE PROPERTY RETURN FOR 2005.
For a Maryland entity, its existence has been ended by the State for
some delinquency.

Good Standing:	No

-----------------------------------------------------
Kind Regards,

Rafael Martinez-Minuesa

www.1001webs.net
Puerto Marina, Benalmadena,
MALAGA - 29630
Spain
Phone: 	+34.620443347
EmailAddress: info-at-1001webs.net

0
Reply 1001 11/13/2007 2:24:00 PM

1001 Webs wrote:
> On Nov 13, 1:41 pm, Jerry Stuckle <jstuck...@attglobal.net> wrote:
>> 1001 Webs wrote:
>>> On Nov 11, 1:36 am, "Ana C. Dent" <anaced...@hotmail.com> wrote:
>>>> JerryStuckle <jstuck...@attglobal.net> wrote innews:57ydndMGpf3Tj6vanZ2dnUVZ_rzinZ2d@comcast.com:
>>>>> No, issue the DESCRIBE command for each table and paste the output here.
>>>> REDUNDANCY  is the best way to teach idiots.
>>>> REDUNDANCY  is the best way to teach idiots.
>>>> REDUNDANCY  is the best way to teach idiots.
>>>> REDUNDANCY  is the best way to teach idiots.
>>>> REDUNDANCY  is the best way to teach idiots.
>>>> REDUNDANCY  is the best way to teach idiots.
>>>> You can lead some folks to knowledge, but you can't always make them think.
>>> Careful there, Ana.
>>> When left without arguments,Jerrywill resort to beating you up as he
>>> did with his wife:
>>> Court System:   DISTRICT COURT FOR MONTGOMERY COUNTY - CIVIL SYSTEM
>>> Case Number:    0602SP019022003 Claim Type:DOMESTIC VIOLENCE
>>> Complaint No:   001(STUCKLE, ELIZABETH M) Vs:(STUCKLE,JERRYD )
>> ROFLMAO!  This troll is following me around all over the internet now!
>>
>> For those who don't know him, he's Ahmed Hendy, 35 Avda America, Madrid,
>> Spain.  He thinks he's a web designer/developer, but he isn't.
> 
> 
> Taxpayer Services Division
> 
> Entity Name: SMARTECH HOMES, INC.
> Dept ID #: D07297567
> 
> Principal Office (Current): 9920 BRIXTON LANE, BETHESDA, MD 20817
> Resident Agent (Current): JERRY D. STUCKLE, 9920 BRIXTON LANE,
> BETHESDA, MD 20817
> 
> DEPT. ACTION - FORFEITURE 	10/06/2006 	12:03-AM
> THE ENTITY WAS FORFEITED FOR FAILURE TO FILE PROPERTY RETURN FOR 2005.
> For a Maryland entity, its existence has been ended by the State for
> some delinquency.
> 
> Good Standing:	No
> 
> -----------------------------------------------------
> Kind Regards,
> 
> Rafael Martinez-Minuesa
> 
> www.1001webs.net
> Puerto Marina, Benalmadena,
> MALAGA - 29630
> Spain
> Phone: 	+34.620443347
> EmailAddress: info-at-1001webs.net
> 
> 

ROFLMAO!  Keep trying, loser!

-- 
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

0
Reply Jerry 11/13/2007 2:26:20 PM

cov wrote:
<snip>

There are several Business Intellegence tools like iReport and Pentaho Report 
Designer that use a tool called SQLeonardo. It allows you to litterally drop and 
drag to create your queries.

Once you get the queries you want you can just cut the SQL back into your PHP code.

http://www.jasperforge.org/jaspersoft/opensource/business_intelligence/ireport/
  or
http://www.pentaho.com/products/reporting/
but download from http://sourceforge.net/project/showfiles.php?group_id=140317
0
Reply Walter 11/13/2007 3:13:10 PM

On Mon, 12 Nov 2007 20:28:31 GMT, Michael Austin
<notknown@thistime.inf> wrote:


>now that we have seen you table definitions - there are several ways to 
>possibly concatenate the colums when doing your searches like ANSI 
>Standard concatenate using the double "pipe" symbol:
>
>area.conveyors||equipname.conveyors = area.motors||equipname.motors
>and area.conveyors||equipname.conveyors = area.equipcontacts || 
>equipname.equipcontacts "
>
>Also see the Mysql docs for concat statement.


Thank you very much - appreciate the help.  :-)
0
Reply cov 11/16/2007 2:30:42 PM

On Tue, 13 Nov 2007 10:13:10 -0500, Walter Vaughan
<wvaughan@steelerubber.com> wrote:

>cov wrote:
><snip>
>
>There are several Business Intellegence tools like iReport and Pentaho Report 
>Designer that use a tool called SQLeonardo. It allows you to litterally drop and 
>drag to create your queries.
>
>Once you get the queries you want you can just cut the SQL back into your PHP code.
>
>http://www.jasperforge.org/jaspersoft/opensource/business_intelligence/ireport/
>  or
>http://www.pentaho.com/products/reporting/
>but download from http://sourceforge.net/project/showfiles.php?group_id=140317

Pretty cool.  Hey thank you very much.  SQLeonardo looks pretty slick.
0
Reply cov 11/16/2007 2:32:04 PM

25 Replies
129 Views

(page loaded in 0.144 seconds)

5/22/2013 2:46:02 PM


Reply: