所以我有一张桌子:
place_id | name | description | availableDirections
1 | Room | A nice room | N, W, E, S
2 | Office | A messy office | N, W, E, S
如何才能获得其中一行的描述?它看起来像这样吗?
SELECT description FROM place WHERE place.place_id="1"
到目前为止,这个查询在SQL Server中对我不起作用。
答案 0 :(得分:4)
SELECT description FROM place WHERE place_id = 1