如何在融合表中的字段上设置主键

发布于 2024-12-09 04:54:57 字数 95 浏览 3 评论 0原文

我有一个名为“测试”的表。该表中的字段是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

三生池水覆流年 2024-12-16 04:54:57

当您执行 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.

画尸师 2024-12-16 04:54:57

我不认为你能做到这一点。这似乎是一项备受期待的功能: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

猫性小仙女 2024-12-16 04:54:57

它不可用。我使用一种解决方法,对要插入的唯一 ID 执行 COUNT(ROWID) 查询,然后根据该唯一 ID 是否已存在于表中来采取步骤。

基本算法是这样的(使用 Google Apps 脚本):

var check = FusionTables.Query.sql("SELECT COUNT(ROWID) FROM <table ID> WHERE 'Trip ID' = '" + rowID + "'");
    if (check.rows[0][0] > 0) {
      // ID already exists
     } else {
      // ID is new, insert the record.
     }

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):

var check = FusionTables.Query.sql("SELECT COUNT(ROWID) FROM <table ID> WHERE 'Trip ID' = '" + rowID + "'");
    if (check.rows[0][0] > 0) {
      // ID already exists
     } else {
      // ID is new, insert the record.
     }

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文