在查询时,需要将数字值转化为合适的类型,以确保它们被正确地存储在 Big-Query 中。以下是一个使用 node.js api 进行查询并保留数字值的示例:
const { BigQuery } = require('@google-cloud/bigquery');
// Create a new client
const bigquery = new BigQuery();
// Query options
const options = {
query: 'SELECT * FROM `myDataset.myTable` WHERE myNumber > @threshold',
// Use parameters to set numeric values
params: {
threshold: 10
}
};
// Run the query
bigquery
.query(options)
.then(results => {
// Process the results here
console.log(results);
})
.catch(err => {
console.error('ERROR:', err);
});
在上面的示例中,我们使用 params
选项将数字值传递给查询。这将确保数字保持其原始类型,并且不会被转换为字符串。