0

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

4

2 回答 2

0

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

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

于 2011-11-17T17:03:31.623 回答
0

这个例子可以帮助你

<?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 />";

来源: 谷歌代码

于 2011-10-12T16:20:00.703 回答