如何在融合表中的字段上设置主键
我有一个名为“测试”的表。该表中的字段是 Id、Name 和 Description。 我想将 Id 字段作为主键,即仅应在此字段中输入唯一值。
谢谢, 希曼舒
I have a table named "Testing". fields in this table are Id,Name and Description.
I want to make Id field as a primary key i.e. only unique values should be entered in this field.
Thanks,
Himanshu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当您执行 CREATE TABLE 时,
除了您在 CREATE TABLE 语句中指定的列名称之外,Google Fusion Tables 还将创建一个名为 ROWID 的列,其中包含为每行自动分配的唯一 ID 号。
When you do CREATE TABLE
In addition to the column names you specify in the CREATE TABLE statement, Google Fusion Tables will create a column named ROWID that contains an automatically-assigned, unique ID number for each row.
我不认为你能做到这一点。这似乎是一项备受期待的功能:https://code。 google.com/p/fusion-tables/issues/detail?id=112
I don't think you can do this. It appears to be a much requested feature: https://code.google.com/p/fusion-tables/issues/detail?id=112
它不可用。我使用一种解决方法,对要插入的唯一 ID 执行 COUNT(ROWID) 查询,然后根据该唯一 ID 是否已存在于表中来采取步骤。
基本算法是这样的(使用 Google Apps 脚本):
It's not available. I use a workaround that performs a COUNT(ROWID) query for the unqiue ID I'm about to insert and then take steps depending on whether or not that unique ID is already in the table.
The basic algo is something like this (using Google Apps Script):