私は現在のテーブルを持っています:
create table Tokens (
token varchar(256) not null,
duser varchar(32) not null,
type varchar(16) not null,
expires_in datetime not null,
auth_time datetime not null,
primary key(token),
foreign key(duser) references User(id)
);
そして、私は以下のクエリを作成したいと思います:
select * from Tokens where duser = "myid" and expires_in > current_timestamp
--or something to compare if expires_in is greater than the current date **and** time
しかし、私はExposedを使用しています。私はすでにこれを作った:
return transaction {
Database.TOKENS.run {
select {
(user eq this@DogoUser.id) and (expiresIn greater) //stopped here
}
}
}
current_timestamp
Jetbrains Exposed で MySQL 変数を参照するには?