我正在使用 Netty 和 MySQL(带有 JDBC 连接器/J)编写服务器。
请注意,我对服务器编程非常陌生。
假设我有一个应用程序,用户输入了大约 20 条关于他们自己的信息。我需要制定一些方法,只需要这些信息中的特定数据。
Instead of using "select dataOne, dataTwo from tableOne where userNum=1~1000"
create a new table called tableTwo containing only dataOne and dataTwo.
Then use "select * from tableTwo where userNum=1~1000"
当我为我需要的每种方法制作表格时,这是一个好习惯吗?如果没有,有什么更好的做法?