SQLite database - select the data between two dates?

后端 未结 3 1802
萌比男神i
萌比男神i 2020-12-06 02:53

I want to select my data by date - from a date until another date, so I have this query,

SELECT * FROM mytalbe WHERE date BETWEEN \'2014-10-09\' AND \'2014-1         


        
相关标签:
3条回答
  • 2020-12-06 03:14

    same problem solved, thanks. my code :

    var FechaInicio = dtpFechaInicial.Value.ToString("yyyy-MM-dd");
    var FechaFinal = dtpFechaFinal.Value.ToString("yyyy-MM-dd");
    
    string SQLcmd = $"SELECT * FROM sorteos WHERE DATE(fecha) BETWEEN ('{FechaInicio}') AND ('{FechaFinal}')";
    
    0 讨论(0)
  • 2020-12-06 03:20

    IF date is a timestamp, you'll need to do like:

    SELECT * FROM mytalbe WHERE date BETWEEN '2014-10-09 00:00:00' AND '2014-10-10 23:59:59'
    

    Or you can do, I believe:

    SELECT * FROM mytalbe WHERE DATE(date) BETWEEN '2014-10-09' AND '2014-10-10'
    

    Or, since it is a text field:

    SELECT * FROM mytalbe WHERE DATE_FORMAT(date,'%Y-%m-%d') BETWEEN '2014-10-09' AND '2014-10-10'
    
    0 讨论(0)
  • 2020-12-06 03:26

    You could also just not use between.

    select * from mytable where `date` >= '2014-10-09' and `date` <= '2014-10-10'
    

    Example:

    mysql> create table dd (id integer primary key auto_increment, date text);
    Query OK, 0 rows affected (0.11 sec)
    
    mysql> insert into dd(date) values ('2014-10-08'), ('2014-10-09'), ('2014-10-10'), ('2014-10-11');
    Query OK, 4 rows affected (0.05 sec)
    Records: 4  Duplicates: 0  Warnings: 0
    
    mysql> select * from dd where date >= "2014-10-09" and date <= "2014-10-10";
    +----+------------+
    | id | date       |
    +----+------------+
    |  2 | 2014-10-09 |
    |  3 | 2014-10-10 |
    +----+------------+
    2 rows in set (0.01 sec)
    

    Since it includes time, and you dont want the time. this:

    select substring(date, 1, 10) from dd where substring(date, 1, 10) between '2014-10-09' and '2014-10-10';
    

    question updated again, additional answer

    Ugh. you have timestamp fields? in that case this:

    select date(from_unixtime(timestamp)) from mytabel where date(from_unixtime(timestamp)) between '2014-10-09' and '2014-10-10'
    

    finally we have arrived at sqlite

    select date(datetime(timestamp, 'unixepoch')) 
      from mytable 
        where date(datetime(timestamp, 'unixepoch')) 
          between '2014-10-09' and '2014-10-10';
    
    0 讨论(0)
提交回复
热议问题