如何在Fusion Table中显示表的ROWID

发布于 2024-12-09 14:23:55 字数 99 浏览 3 评论 0原文

我有一个名为“测试”的表。该表中的字段是 Id、Name 和 Description。仅这些字段显示在融合表查看器中。我还想在融合表查看器中显示每一行的 ROWID。是否可以显示???

I have a table named "Testing". Fields in this table are Id,Name and Description. Only these fields are shown in fusion table viewer. i also want to show ROWID for each row in fusion table viewer.Is it possible to show????

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

独行侠 2024-12-16 14:23:56

这个例子可以帮助你

<?php

include('../clientlogin.php');
include('../sql.php');
include('../file.php');

//get token
$token = ClientLogin::getAuthToken('username', 'password');
$ftclient = new FTClientLogin($token);

//select rowid from table
echo $ftclient->query(SQLBuilder::select(358077, array('rowid')));
echo "<br />";

来源:
Google 代码

This example can help you

<?php

include('../clientlogin.php');
include('../sql.php');
include('../file.php');

//get token
$token = ClientLogin::getAuthToken('username', 'password');
$ftclient = new FTClientLogin($token);

//select rowid from table
echo $ftclient->query(SQLBuilder::select(358077, array('rowid')));
echo "<br />";

Source:
Google Code

雅心素梦 2024-12-16 14:23:56

目前无法在 Fusion Tables 中查看 rowid。您可以为以下功能请求加注星标:

http://code.google .com/p/fusion-tables/issues/detail?id=859

It's not possible to see the rowid within Fusion Tables at this time. You can star the following feature request:

http://code.google.com/p/fusion-tables/issues/detail?id=859

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