Jump to content

Query can't find MYSQL table.


mdraft

Recommended Posts

Hello,

I'm a newbie to PHP and I'm struggling with making a change to my code. I would like to pull data from a different table in the same database. However, when I change the table reference to the other table (both the old and new tables are valid, existing tables), I get the following error:

Unknown table 'CY Players' in field list

The following is the beginning of the code. I have highlighted the line that I would like to change from "PY Players" to "CY Players". Any ideas? Thanks!

<?php

//MODULE exec query (mysql 4.1 is required)

// calc limits
$in['limitQB'] = $in['teams']*$in['qbs'];
$in['limitRB'] = $in['teams']*$in['rbs'];
$in['limitWR'] = $in['teams']*$in['wrs'];
$in['limitTE'] = $in['teams']*$in['tes'];

//  long select
$sql="
SELECT

`CY All Players Combined Values`.Name,
`CY All Players Combined Values`.Team,
`CY Bye Week`.Bye,
[color=red]`PY Players`.Consistency,[/color]
`PY Players`.HC,
`PY Players`.Fade,
`CY All Players Combined Values`.Pos,
`CY All Players Combined Values`.Expr1 AS `Avg Starter`,
`CY All Players Combined Values`.Expr2 AS `Min Starter`,
`CY All Players Combined Values`.Expr3 AS `StdDev Starter`,
`CY Fantasy Pts Sorted`.`Total FP` AS `This Yr Proj`,
`CY Fantasy Pts Sorted`.`Total FP`/`PY Fantasy Pts`.`Total FP`*100 AS `% of Last Yr`


Link to comment
Share on other sites

The following is the result given for SHOW TABLES.

Thanks for any help you can give me.

SQL query 
SQL query:
SHOW TABLES 
[ Edit ] [ Create PHP Code ] [ Refresh ]




 
Tables_in_m0n_projections 
CY All Statistics
CY Bye Week
CY Players
PY All Statistics
PY Bye Week
PY Players
item_table
paypal_table

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.