Totally out of ideas here, could be needing a simple solution.
Basically my desired query is :
SELECT * FROM table WHERE id = 3,4
I want to select on开发者_开发技巧ly the row which has ID 3 and 4, or maybe name "andy" and "paul"
Thank you very much for the answer
Try or:
WHERE id = 3 or id = 4
Or the equivalent in:
WHERE id in (3,4)
Try this -
 select * from table where id in (3,4) or [name] in ('andy','paul');
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论