Tagged Questions
The between tag has no wiki summary.
21
votes
5answers
27k views
Does MS SQL Server's “between” include the range boundaries?
For instance can
select foo from bar where foo between 5 and 10
select 5 and 10 or they are excluded from the range?
8
votes
5answers
2k views
generate days from date range
I would like to run a query like
select ... as days where `date` is between '2010-01-20' and '2010-01-24'
And return data like:
days
----------
2010-01-20
2010-01-21
2010-01-22
2010-01-23
...
6
votes
4answers
68 views
Where is difference between using of mySQL operator BETWEEN and classic date interval? [closed]
Possible Duplicate:
Difference in SQL Between operator and “>=” & “<=” operator
I see that my developer is using this construction for selecting data of ...
6
votes
5answers
19k views
Mysql: Select all data between two dates
I have a mysql table with data connected to dates. Each row has data and a date, like this:
2009-06-25 75
2009-07-01 100
2009-07-02 120
I have a mysql query that select all data between ...
5
votes
5answers
231 views
MySQL summing value across date range
I have a table with each row containing a date and some arbitrary, numeric value. I need to sum this value for a specific but dynamic date interval.
SELECT VERSION();
5.0.51a-24+lenny5
CREATE TABLE ...
5
votes
7answers
3k views
MySQL “between” clause not inclusive?
If I run a query with a between clause, it seems to exclude the ending value.
For example:
select * from person where dob between '2011-01-01' and '2011-01-31'
This gets all results with dob from ...
4
votes
3answers
81 views
t-sql: Flipping a BETWEEN operator depending on row value
I've simplified my example here massively, so please excuse it if it looks to simple for what I'm trying to solve.
Is it possible to turn BETWEEN, into a NOT BETWEEN depending on a row value (i've ...
4
votes
6answers
286 views
MySQL composite indexes and operator BETWEEN
I have a question about this query:
SELECT *
FROM runs
WHERE (NOW() BETWEEN began_at
AND finished_at)
Do you think it makes sense to create composite index for began_at and ...
4
votes
2answers
168 views
PHP: date between date
I have two dates:
10-11-2010 and 17-11-2010
Now i would like to SELECT all rows with the dates between those two.
How can I do that?
4
votes
2answers
618 views
Select all months within given date span, including the ones with 0 values
I'm trying to write a MySQL query to get an average value per month, for all months between to given dates. My idea is this:
Query, something like
SELECT AVG(value1) as avg_value_1,
AVG(value2) as ...
3
votes
2answers
66 views
Time bracket for SYSDATE
I need to select rows where timestamp is between now and 5 minutes in the past. How do I do it? Something like that:
select * from tableName where timestamp between sysdate and up to -5 min
The ...
3
votes
1answer
90 views
Linq expression for executing a “Between”
In SQL you have the ability to write a query that executes a between on a column that is of type 'nvachar' and simply returns to you all the rows that are between the min and max values specified.
...
3
votes
1answer
51 views
Put div in between images
I have 5 images and one div with text. Html looks like this:
<div id="title">Title of gallery</div>
<div id="gallery">
<img src="thumbs/1.jpg"/>
<img ...
3
votes
2answers
168 views
Is the 'BETWEEN' function very expensive in SQL Server?
I'm trying to join two relatively simple tables together, but my query is experiencing serious hangups. I'm not sure why, but I think it might have something to do with the 'between' function. My ...
3
votes
6answers
257 views
Why there's diffrence between javascript and php timestamp
I have created JavaScript timestamps and also the PHP time stamp there is about 170 sec difference between both of them.
1302162686 PHP - time()
1302162517 JavaScript - Math.round(new ...
3
votes
5answers
438 views
T-SQL Between Dates Confusion
I am working with T-SQL in SQL Server 2000 and I have a table TRANSACTIONS which has a date column TRANDATE defined as DateTime, among many other columns which are irrelevant for this question..
The ...
3
votes
3answers
1k views
How can I show a Progress dialog between two activities?
enter code hereHi, everybody...
I have a problem. I need go from one activity to another. My second activity have a big xml layout, with a lot of elements (I'm speaking about four hundred aprox.), ...
3
votes
1answer
1k views
java example to get all weekend dates in a given month
I need to find all the weekend dates for a given month and year, eg: 01(month), 2010(year) . the output should be :- 2,3,9,10,16,17,23,24,30,31. all weekend dates. please any idea.
usman
3
votes
5answers
1k views
How many weeks are inside of two dates
I have starting dates and ending dates in my database (MySQL).
How can I get the answer, how many weeks(or days) are inside of those 2 dates? (mysql or php)
For example I have this kind of ...
3
votes
5answers
4k views
Difference between scanf() and fgets()
I want to know what is the difference between fgets() and scanf(). I am using C as my platform.
2
votes
1answer
50 views
Using inheritance to pass a non-static variable between classes
I'm researching UI's as a portfolio project and I ran into a little bit of trouble when it comes to inheritance. The problem I'm facing is this: I have two classes, R_GUI, in which I draw the form, ...
2
votes
1answer
43 views
PHP extract value from a string that is between <star>t and <end>
I want to extract some values from a string (result of a db query).
An example of such a string is:
$data="tostore1:1 = INTEGER: 10000000
tostore1:2 = INTEGER: 1000000
something else ...
2
votes
4answers
183 views
How to pass drawable between activities
How can I pass an image, drawable type between activities?
I try this:
private Drawable imagen;
Bundle bundle = new Bundle();
bundle.putSerializable("imagen", (Serializable) unaReceta.getImagen());
...
2
votes
2answers
66 views
mysql date between period
Database structure:
activities: id, description, date, time, endDate, endTime, userId
So we got an activity, it is required to have a date, the time, endDate and endTime are not required.
The ...
2
votes
1answer
130 views
How can I clear class variables between rspec tests in ruby
I have the following class:
I want to ensure the class url is only set once for all instances.
class DataFactory
@@url = nil
def initialize()
begin
if @@url.nil?
Rails.logger.debug ...
2
votes
1answer
73 views
Count the number of records active between two dates
I am trying to do a query to retreive the number of active calls for a given time,
I have a table CALLS with all the calls record with an AnsweredTime and ReleaseTime and I need to retrieve the ...
2
votes
4answers
64 views
mysql between operator with dates
select '2011-02-29' BETWEEN '2011-02-01' AND '2011-03-03'‎
this is returning 1. I think between doesn't consider leap year. I want your view on this?
[EDIT]
SELECT DATE( '2010-04-31' ) is returning ...
2
votes
3answers
112 views
How do I extract a string of text in c#
i am having trouble splitting a string in c#
have a string (text in textbox0)
start and ...
2
votes
2answers
104 views
regex match between 2 strings
For example I have the text
a1aabca2aa3adefa4a
I want to extract 2 and 3 with a regex between abc and def, so 1 and 4 should be not included in the result.
I tried this
...
2
votes
3answers
397 views
PHP: Regex to ignore escaped quotes within quotes
I looked through related questions before posting this and I couldn't modify any relevant answers to work with my method (not good at regex).
Basically, here are my existing lines:
$code = ...
2
votes
1answer
333 views
Differences between DomainKeys vs DKIM?
Please explain about differences between DomainKeys vs DKIM
Thanks,
Ramesh
2
votes
2answers
326 views
MySQL: Multiple AND queries with using BETWEEN?
I had seen a colleague use this to fetch users from a table under these conditions:
SELECT * FROM users WHERE gender ='male'
AND activated='yes'
AND date_registered BETWEEN '$date1' AND '$date2'
...
2
votes
4answers
242 views
Select BETWEEN column values
I'm trying to use the BETWEEN with column names instead of direct values, something like this:
SELECT * FROM table WHERE column1 BETWEEN column2 AND column3;
This is returning something like 17 ...
2
votes
3answers
431 views
Get String Between 2 Strings
How can I get a string that is between two other declared strings, for example:
String 1 = "[STRING1]"
String 2 = "[STRING2]"
Source:
"832h0ufhu0sdf4[STRING1]I need this text ...
2
votes
3answers
125 views
Is there a performance difference between BETWEEN and IN with MySQL or in SQL in general?
I have a set of consecutive rows I want to get based upon their primary key, which is an auto-incrementing integer. Assuming that there are no holes, is there any performance between between:
SELECT ...
2
votes
3answers
207 views
Mysql select - improve performances
I am working on an e-shop which sells products only via loans. I display 10 products per page in any category, each product has 3 different price tags - 3 different loan types. Everything went pretty ...
2
votes
1answer
2k views
How Do I Search Between a Date Range, Using the ActiveRecord Model?
I am new to both Ruby and ActiveRecord. I currently have a need to modify and existing piece of code to add a date range in the select. The current piece goes like this:
ReportsThirdparty.find(:all, ...
2
votes
3answers
406 views
jQuery select elements with value between x and y
<input value="1" />
<input value="10" />
<input value="9" />
<input value="4" />
<input value="5" />
I'd like to be able to do that kind of selection:
$('input[value ...
2
votes
2answers
342 views
PHP: passing GET between multiple pages
I'm building a set of pages where I have a number of GET variables and it is often valuable to keep passing it along to the next page. This leads to ugly code where I have to have "if this $_GET ...
2
votes
2answers
343 views
Linq2SQL Where Between
Is is possible to do this in SQL in Linq to SQL?
Select field from table where date between '2010-01-01' and '2010-01-31';
I realize I could do:
where (monthBeginDate < a.StopDateActual ...
2
votes
3answers
312 views
sql: BETWEEN v1 AND v2
Is there a difference in the order of v1 and v2 in a BETWEEN query on SQL Server?
SELECT *
FROM table
WHERE col BETWEEN v1 AND v2
currently I don’t get any results if v1 is bigger than v2. Is ...
2
votes
4answers
638 views
How to make faster this statement : “paramDate Between startDate and NULL”?
This query is taking long time when endDate is null (i think that its about case statement, before case statement it was fast)
SELECT *
FROM HastaKurumlari
WHERE ...
2
votes
1answer
543 views
SQL 2005 Foreign key between another base
Is it possible to create in a table of database a foreign key to a column of table in another database in SQL 2005 ?
1
vote
4answers
46 views
Actual days between two unix timestamps in PHP
No this is not the standard +86400 seconds between dates.
$start_time = strtotime("2012-01-15 23:59");
$end_time = strtotime("2012-01-16 00:05");
$daysInBetweenTimestamps = ?
That is the problem ...
1
vote
1answer
34 views
How to store variable data between frames in Action Script 3.0
I am new to ActionScript 3.0, I am facing a problem in storing the data from one frame to another whenever the button is clicked to switch between the frames. The original frame content is set to ...
1
vote
1answer
43 views
SQL between query issue
I have 2 tables.
One with addresses (separately name and house number), and other with Regions where there are Street number and fields from and to. E.g. Region Europe is everything that belongs in ...
1
vote
3answers
68 views
SQL Server: How to select rows that were inserted on the same day?
I have a loop, that goes through some entries. In the loop I'm getting creation date and I need to find if there were entries inserted on the same day. So for example if creation date = 2011-08-31 ...
1
vote
2answers
38 views
Where is this extra space between divs coming from?
http://www.lethalmonk6.byethost24.com/index.html
If you inspect with firebug the spacing between the "project-link" divs, there are a few pixels of added margin between each div. I have the margin ...
1
vote
4answers
46 views
C# Add items if they are between a date
I've created a program will need to add items if the items are between a date, this is the code I use:
if (day >= fromDay - 1 && day <= tillDay && month >= fromMonth - 1 ...
1
vote
1answer
74 views
Finding a string between 2 other strings that has a minimum length of 5 a maximum of 7 and contains 2 dots
Ok, this might sound a bit complicated, but trust me it shouldn't be.
What I need to do is find a string that can be any value, and is placed between ">" and "</" with a minimun length of 5 and ...