从特定值SQL字符串中获取数据

时间:2016-04-04 11:03:13

标签: sql string sqlite select

我是SQL编程的新手,并且仍然在努力学习基础知识。我需要从指定的ID字符串中提取一些特定的行。

from scipy import stats
import numpy as np
x = np.random.random(10)
y = np.random.random(10)
 slope, intercept, r_value, p_value, std_err = stats.linregress(x,y)

confidence_interval = 2.58*std_err

如果需要选择ID = 1,2,5,6,10,11,13,如何从数据库中提取这些特定行? 我正在使用SQLite。

提前致谢。

1 个答案:

答案 0 :(得分:2)

您应该使用in子句

select * from your_table 
where id in (1,2,5,6,10,11,13)