Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2016 11:44 AM
query = 'SELECT * FROM dbsnp where rs_id="{}"'.format(rs_id)
Add single quotes around the query
,Surround the query in single quote
query = 'SELECT * FROM dbsnp where rs_id="{}"'.format(rs_id)