Jump to content

results


0x00

Recommended Posts

hey,

say i have a table such as this -

 

CREATE TABLE test_oh (value1 int not null, value2 int not null)

 

and did a query like so -

$query = "SELECT value1, value2 FROM test_oh WHERE (value1 * value2 >= 300) ";

how without redoing the calculation could i also get the result, say a bit like this (but not) -

 

$query = "SELECT value1, value2, x FROM test_oh WHERE (value1 * value2 >= 300) as x ";

 

thanx

Link to comment
Share on other sites

that doesnt work...

Unknown column 'total' in 'where clause'

 

im currently looking at subqueries, but not sure if its what i need?

$query = "SELECT value1, value2, x  FROM test_oh WHERE ( (SELECT (value1 * value2) FROM test_oh AS x) >= 300) ";

p.s. this also throws an error...

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.