matlab中使用sql语言查询过程中如何在select语句中使用变量

2024-12-17 13:19:33
推荐回答(2个)
回答1:

对很简单:

他说得很对:

先声名变量 declare @time datetime

为变量赋值 select @time=2007-01-10

带入查询语句 select * from 表 where 时间=@time

回答2:

declare @time datetime

select @time=2007-01-10

select * from 表 where 时间=@time