Jump to content

[SOLVED] once, twice, ...


0x00

Recommended Posts

for this test i create a table with:

$s = "CREATE TABLE test_math (x int not null, y int not null )";

then add some data, say:

$s = "INSERT INTO test_math VALUES (2, 1), (2, , (2, 3), (2, 5), (2, 7), (2, 4), (2, 6), (2, 2) ";

 

heres my first query...

$s = "SELECT x, y, POW(x,y) as z FROM test_math WHERE (POW(x,y) > 16) ORDER BY POW(x,y)";

i can refine it like this...

$s = "SELECT x, y, POW(x,y) as z FROM test_math WHERE (POW(x,y) > 16) ORDER BY z";

 

but is there a way to just do the math once?

 

say like this (no it doesnt work!)

$s = "SELECT x, y, POW(x,y) as z FROM test_math WHERE (z > 16) ORDER BY z";

Link to comment
Share on other sites

thats buzz, cheers...

 

but i dont seem to be finding any good info in the mysql manual on the HAVING bit, not seen that before and would of thought youd of used it at the lowest element, even though i cant see how thatd be...

 

once again cheers...

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.