How to sort values in columns and update table?

前端 未结 7 2442
花落未央
花落未央 2020-12-05 15:28

I\'m completely new to sql and can\'t do that myself. So I need your help. I want to sort values in column and then save changes. But I don\'t know how to do that.

T

相关标签:
7条回答
  • 2020-12-05 15:55

    SQL> SELECT * FROM games ORDER BY ID,NAME;

    0 讨论(0)
提交回复
热议问题