Microsoft Access 中的 table 符号是什么意思?

What does the sign means to a table in the Microsoft Access?

我只想知道记录开头的sign/statement是什么意思

Table1 的屏幕截图:它有“*”和“(新)”字样。这是什么意思? https://drive.google.com/file/d/0B1ZF1oqH0s9hemtYX0NpLWhqLWs/view?usp=sharing

Table2 的屏幕截图:此 table 只有“*”符号。这是什么意思? https://drive.google.com/file/d/0B1ZF1oqH0s9hd3dKdUhkQXR3VzA/view?usp=sharing

说我想让Table2变得像Table1,我该怎么办?

(New) 写在将自动生成值的字段中。如果您输入 table 的 DesignView,您可以更改 table 中字段的数据类型。如果您将类型设置为 AutoNumber,则在创建新条目时将显示一个占位符。

将导致如下显示:

而不是将其设置为与自动编号不同的值:

导致

前面的 * 已经在评论中进行了适当的解释:它是新行条目的指示器。

要使 table2 类似于 table1,您必须将字段类型更改为自动编号 - 不幸的是,据我所知这是不可能的,因为您已经输入了数据:

Once you enter data in a table, you can't change the data type of any field to AutoNumber, even if you haven't yet added data to that field.

唯一的方法是使用正确的模式创建一个新的 table 并将数据移动到那里而不指定自动编号值。