如何从dd/mm/yyyy格式的sqlite数据库中获取两个日期之间的数据
How to get data between two dates from sqlite database which is in dd/mm/yyyy format
我正在构建一个应用程序,其中 select 行到 dd/mm/yyyy 格式的日期之间,并计算状态为挂起、注册和拒绝的行。我已经做了一些工作,但它不起作用。我在数据库中将日期存储为文本。我在下面粘贴了代码。
public void showMonthlyPopUp(View view) {
weeklyDialog.setContentView(R.layout.pop_up_all_list);
TextView nameTextView = weeklyDialog.findViewById(R.id.textView);
nameTextView.setText("MONTHLY");
TextView pendingTextView = weeklyDialog.findViewById(R.id.textView6);
TextView signUpTextView = weeklyDialog.findViewById(R.id.textView3);
TextView rejectedTextView = weeklyDialog.findViewById(R.id.textView7);
Button shareButton = weeklyDialog.findViewById(R.id.button_share);
String[] projection = {
InfoContract.InfoEntry._ID,
InfoContract.InfoEntry.COLUMN_STATUS,
InfoContract.InfoEntry.COLUMN_DATE
};
Calendar calendar = Calendar.getInstance();
String strDate = calendar.get(Calendar.MONTH) + "/" + calendar.get(Calendar.YEAR);
int dayInt = calendar.get(Calendar.DAY_OF_MONTH);
String[] selectionArgs = new String[dayInt];
for (int i = 1; i <= dayInt; i++) {
selectionArgs[i - 1] = i + "/" + strDate;
}
String selection = InfoContract.InfoEntry.COLUMN_DATE + " =?";
for (int i = 1; i < dayInt; i++) {
selection += " OR " + InfoContract.InfoEntry.COLUMN_DATE + " =?";
}
Cursor cursor = this.getContentResolver().query(InfoContract.InfoEntry.CONTENT_URI, projection, selection, selectionArgs, null);
int pending = 0;
int signUp = 0;
int rejected = 0;
while (cursor.moveToNext()) {
int statusColumnIndex = cursor.getColumnIndex(InfoContract.InfoEntry.COLUMN_STATUS);
int status = cursor.getInt(statusColumnIndex);
if (status == InfoContract.InfoEntry.STATUS_SIGN_UP) signUp = signUp + 1;
else if (status == InfoContract.InfoEntry.STATUS_REJECTED) rejected++;
else pending++;
}
cursor.close();
pendingTextView.setText("" + pending);
signUpTextView.setText("" + signUp);
rejectedTextView.setText("" + rejected);
weeklyDialog.show();
final int finalPending = pending;
final int finalSignUp = signUp;
final int finalRejected = rejected;
shareButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
shareData(finalPending, finalSignUp, finalRejected, "Monthly Details: ");
}
});
}
使用格式 dd/mm/yyyy 会很困难,因为使用 BETWEEN 子句作为 WHERE 子句的一部分的最明显的 SELECT 不容易使用它,当 dd/mm/yyyy 对于小于 10 的值通常使用单个字符(例如 1/1/2019 而不是 10/10/2019)。
考虑使用 :-
创建和加载 mytable
DROP TABLE IF EXISTS mytable;
CREATE TABLE IF NOT EXISTS mytable (mydatecolumn TEXT, myothercolumn TEXT DEFAULT 'BLAH');
INSERT INTO mytable (mydatecolumn)
VALUES
('01/01/2019'),('1/1/2019'),('01/1/2019'),('1/01/2019'),
('10/1/2019'),('10/10/2019'),('1/10/2019'),('01/02/2019'),
('1/3/2019'),('01/1/2019'),('14/01/2019'),('10/1/2019'),
('10/10/2020'),('1/10/2018')
;
看起来像:-
转置值然后 select 日期范围的查询可以是:-
-- An example that would hanlde dd/mm/yyyy where dd and mm could be either 1 or 2 characters
WITH
-- First CTE gets the day and the rest of the date
ctedaypart AS (
SELECT
rowid AS daypartid,
substr(mydatecolumn,1,instr(mydatecolumn,'/')-1) AS day_part,
substr(mydatecolumn,instr(mydatecolumn,'/')+1) AS rest_after_day
FROM mytable
),
-- Second CTE gets the month and the rest of the date
ctemonthpart AS (
SELECT
daypartid AS monthpartid,
substr(rest_after_day,1,instr(rest_after_day,'/')-1) AS month_part,
substr(rest_after_day,instr(rest_after_day,'/')+1) AS year
FROM ctedaypart
),
-- Third CTE expands the day and month the have a leading 0 id less than 10 and joins the parts to form YYYY-MM-DD
expandedparts AS (
SELECT
*,
mytable.rowid AS expandedpartsid,
year||'-'||
CASE WHEN length(month_part) = 1 THEN '0'||month_part ELSE month_part END ||'-'||
CASE WHEN length(day_part) = 1 THEN '0'||day_part ELSE day_part END AS date_in_sqlite_format
FROM mytable JOIN ctedaypart ON mytable.rowid = daypartid JOIN ctemonthpart ON daypartid = monthpartid)
SELECT mytable.* FROM mytable JOIN expandedparts ON mytable.rowid = expandedpartsid WHERE (date_in_sqlite_format) BETWEEN ('2019-01-01') AND ('2019-03-31');
上面的结果是 14 行中的 10 行被 selected 按照 :-
然而
如果日期以可识别的格式保存在数据库中,例如YYYY-MM-DD 然后上面可以简单地是:-
SELECT * FROM mytable WHERE (mydatecolumn) BETWEEN ('2019-01-01') AND ('2019-03-31');
因此建议您在与数据库交互时采用可识别的日期格式 :-
Time Strings
A time string can be in any of the following formats:
YYYY-MM-DD
YYYY-MM-DD HH:MM
YYYY-MM-DD HH:MM:SS
YYYY-MM-DD HH:MM:SS.SSS
YYYY-MM-DDTHH:MM
YYYY-MM-DDTHH:MM:SS
YYYY-MM-DDTHH:MM:SS.SSS
HH:MM
HH:MM:SS
HH:MM:SS.SSS
now
DDDDDDDDDD
SQL As Understood By SQLite - Date And Time Functions
另一种方法是使用或改编上面的复杂查询,或者使用类似的查询。
我正在构建一个应用程序,其中 select 行到 dd/mm/yyyy 格式的日期之间,并计算状态为挂起、注册和拒绝的行。我已经做了一些工作,但它不起作用。我在数据库中将日期存储为文本。我在下面粘贴了代码。
public void showMonthlyPopUp(View view) {
weeklyDialog.setContentView(R.layout.pop_up_all_list);
TextView nameTextView = weeklyDialog.findViewById(R.id.textView);
nameTextView.setText("MONTHLY");
TextView pendingTextView = weeklyDialog.findViewById(R.id.textView6);
TextView signUpTextView = weeklyDialog.findViewById(R.id.textView3);
TextView rejectedTextView = weeklyDialog.findViewById(R.id.textView7);
Button shareButton = weeklyDialog.findViewById(R.id.button_share);
String[] projection = {
InfoContract.InfoEntry._ID,
InfoContract.InfoEntry.COLUMN_STATUS,
InfoContract.InfoEntry.COLUMN_DATE
};
Calendar calendar = Calendar.getInstance();
String strDate = calendar.get(Calendar.MONTH) + "/" + calendar.get(Calendar.YEAR);
int dayInt = calendar.get(Calendar.DAY_OF_MONTH);
String[] selectionArgs = new String[dayInt];
for (int i = 1; i <= dayInt; i++) {
selectionArgs[i - 1] = i + "/" + strDate;
}
String selection = InfoContract.InfoEntry.COLUMN_DATE + " =?";
for (int i = 1; i < dayInt; i++) {
selection += " OR " + InfoContract.InfoEntry.COLUMN_DATE + " =?";
}
Cursor cursor = this.getContentResolver().query(InfoContract.InfoEntry.CONTENT_URI, projection, selection, selectionArgs, null);
int pending = 0;
int signUp = 0;
int rejected = 0;
while (cursor.moveToNext()) {
int statusColumnIndex = cursor.getColumnIndex(InfoContract.InfoEntry.COLUMN_STATUS);
int status = cursor.getInt(statusColumnIndex);
if (status == InfoContract.InfoEntry.STATUS_SIGN_UP) signUp = signUp + 1;
else if (status == InfoContract.InfoEntry.STATUS_REJECTED) rejected++;
else pending++;
}
cursor.close();
pendingTextView.setText("" + pending);
signUpTextView.setText("" + signUp);
rejectedTextView.setText("" + rejected);
weeklyDialog.show();
final int finalPending = pending;
final int finalSignUp = signUp;
final int finalRejected = rejected;
shareButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
shareData(finalPending, finalSignUp, finalRejected, "Monthly Details: ");
}
});
}
使用格式 dd/mm/yyyy 会很困难,因为使用 BETWEEN 子句作为 WHERE 子句的一部分的最明显的 SELECT 不容易使用它,当 dd/mm/yyyy 对于小于 10 的值通常使用单个字符(例如 1/1/2019 而不是 10/10/2019)。
考虑使用 :-
创建和加载 mytableDROP TABLE IF EXISTS mytable;
CREATE TABLE IF NOT EXISTS mytable (mydatecolumn TEXT, myothercolumn TEXT DEFAULT 'BLAH');
INSERT INTO mytable (mydatecolumn)
VALUES
('01/01/2019'),('1/1/2019'),('01/1/2019'),('1/01/2019'),
('10/1/2019'),('10/10/2019'),('1/10/2019'),('01/02/2019'),
('1/3/2019'),('01/1/2019'),('14/01/2019'),('10/1/2019'),
('10/10/2020'),('1/10/2018')
;
看起来像:-
转置值然后 select 日期范围的查询可以是:-
-- An example that would hanlde dd/mm/yyyy where dd and mm could be either 1 or 2 characters
WITH
-- First CTE gets the day and the rest of the date
ctedaypart AS (
SELECT
rowid AS daypartid,
substr(mydatecolumn,1,instr(mydatecolumn,'/')-1) AS day_part,
substr(mydatecolumn,instr(mydatecolumn,'/')+1) AS rest_after_day
FROM mytable
),
-- Second CTE gets the month and the rest of the date
ctemonthpart AS (
SELECT
daypartid AS monthpartid,
substr(rest_after_day,1,instr(rest_after_day,'/')-1) AS month_part,
substr(rest_after_day,instr(rest_after_day,'/')+1) AS year
FROM ctedaypart
),
-- Third CTE expands the day and month the have a leading 0 id less than 10 and joins the parts to form YYYY-MM-DD
expandedparts AS (
SELECT
*,
mytable.rowid AS expandedpartsid,
year||'-'||
CASE WHEN length(month_part) = 1 THEN '0'||month_part ELSE month_part END ||'-'||
CASE WHEN length(day_part) = 1 THEN '0'||day_part ELSE day_part END AS date_in_sqlite_format
FROM mytable JOIN ctedaypart ON mytable.rowid = daypartid JOIN ctemonthpart ON daypartid = monthpartid)
SELECT mytable.* FROM mytable JOIN expandedparts ON mytable.rowid = expandedpartsid WHERE (date_in_sqlite_format) BETWEEN ('2019-01-01') AND ('2019-03-31');
上面的结果是 14 行中的 10 行被 selected 按照 :-
然而
如果日期以可识别的格式保存在数据库中,例如YYYY-MM-DD 然后上面可以简单地是:-
SELECT * FROM mytable WHERE (mydatecolumn) BETWEEN ('2019-01-01') AND ('2019-03-31');
因此建议您在与数据库交互时采用可识别的日期格式 :-
Time Strings A time string can be in any of the following formats: YYYY-MM-DD YYYY-MM-DD HH:MM YYYY-MM-DD HH:MM:SS YYYY-MM-DD HH:MM:SS.SSS YYYY-MM-DDTHH:MM YYYY-MM-DDTHH:MM:SS YYYY-MM-DDTHH:MM:SS.SSS HH:MM HH:MM:SS HH:MM:SS.SSS now DDDDDDDDDD
SQL As Understood By SQLite - Date And Time Functions
另一种方法是使用或改编上面的复杂查询,或者使用类似的查询。