Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.
Yea, I've tried to rewrite it but I can't think of anything that would replicate the limiting of 1 row.
select p.product_id, i.image_id
from `products` as p
left join `product_images_links` as i on (p.product_id = i.product_id)
There are multiple products and multiple images per...
I created a select query that works in version 4.1 and does not in 4.0
It goes a little something like this...
select * from `table1`
left join (select `id` from `table2` order by `id` limit 1) on table1.id = table2.id
This works in 4.1, but 4.0 gives an error at left join ( so I...
I'm looking at using a Linksys WRE54G range expander to strengthen the signal throughout a large home. Can you relay the signal from an already relayed signal? Go from range expander to range expander or does each one have to get the signal directly from the base station?
You can do pretty much anything you can imagine with dual displays. I use UltraMon for extra options. In WoW I have the game fullscreen on the 2407 and I can still surf the web and have ventrilo up on the 2001fp.
I think I figured it out. Using MAX() seems to get the highest timestamp value.
select users.*,
d.cnt as documents,
p.cnt as photos,
l.cnt as logins,
l.datetime as lastlogin
from users
left join (SELECT userid, count(*) as cnt FROM documents GROUP BY userid) d on d.userid =...
One more query I'd like to merge into this one is getting the last login time for each user.
I tried this:
select users.*,
d.cnt as documents,
p.cnt as photos,
l.cnt as logins,
ll.timestamp as lastlogin
from users
left join (SELECT userid, count(*) as cnt FROM documents GROUP BY...
This is for a document mangement script I've been working on.
I have 4 tables so far:
users
documents
photos
logins
For each user i'd like to count up the # of documents, photos, and logins. They are related by a userid (primary in the users table).
The first thing I did was query...
Is there any program or Photoshop plug-in that can take a source image like a photograph, and using lots of smaller images, create an image that resembles the source photo?
I've been searching Google for montage tutorials but all I find is how to merge a few pictures together to make some...