Jump to content

[SOLVED] MySQL WHERE and BETWEEN problem!


budimir

Recommended Posts

Hey guys,

 

This is a new thing for me and I can't get to work. Can someone help?

 

This is my query and is not working right now.

 

$upit = "SELECT * FROM obilasci WHERE upisao = '$upisao' AND datum BETWEEN '$_GET[timestamp]' AND '$_GET[timestamp1]'";

 

When I take pute my upisao = '$upisao' clause, everything is OK, but I need to have that one too.

 

Help, please...

Link to comment
https://forums.phpfreaks.com/topic/120847-solved-mysql-where-and-between-problem/
Share on other sites

It works without the quotes.

 

But anyway I figured it out. Below is the solution.

 

$upit = "SELECT *, COUNT(naziv) AS broj2 FROM obilasci JOIN opcenito ON opcenito.id = obilasci.id WHERE datum BETWEEN '$_GET[timestamp]' AND '$_GET[timestamp1]' GROUP BY naziv";

 

Cheers guys 8)

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.