How can I select a value from one row in SQL Server?

前端 未结 1 2020
隐瞒了意图╮
隐瞒了意图╮ 2021-01-29 15:18

So I have a table:

place_id | name   | description      | availableDirections   
1        | Room   | A nice room      | N, W, E, S    
2        | Office | A mess         


        
相关标签:
1条回答
  • 2021-01-29 15:35
    SELECT description FROM place WHERE place_id = 1
    
    0 讨论(0)
提交回复
热议问题