如何select中的两个或多个元素SQLtable?
How to select two or more element in SQL table?
请注意,我是 SQL 和 PHP 的初学者,我搜索了 =every where 但没有找到任何有用的东西
我想select下面的两个数据table.
id
name
1
Joe
2
John
我的代码
else if($_SESSION['name']=='Joe')
我尝试使用此语法,但 不起作用 =='Joe'、'John'、==('Joe', 'John')
请帮助我
select name from table where name in ('joe','john')
请注意,我是 SQL 和 PHP 的初学者,我搜索了 =every where 但没有找到任何有用的东西 我想select下面的两个数据table.
id | name |
---|---|
1 | Joe |
2 | John |
我的代码
else if($_SESSION['name']=='Joe')
我尝试使用此语法,但 不起作用 =='Joe'、'John'、==('Joe', 'John') 请帮助我
select name from table where name in ('joe','john')