春节期间是娱乐的时间,不过如果整天娱乐不学习浑身都难受,所以偶尔还是要调剂一下,娱乐之余就要学习。 每天进步一点点  (图源 :[pixabay](https://pixabay.com/photos/lightbulb-idea-creativity-base-3104355/)) 话说,前段时间在研究[使用HiveSQL查询历史挂单以及成交](https://hive.blog/hive-105017/@oflyhigh/6ycw3x-hivesql),发现计算出来的价格小数点后有很多位数字,这让生成的表格看起来不是那么规整。 那么有没有什么办法,让数字看起来更规整一些呢?其实从应用的角度看,我们大可以不用关心这点,因为SQL返回的数据一般都要再次进行处理的。 比如说,在Python中,我们就可以通过`round()`或者格式化输出,来实现我们想要的功能,相应代码如下: 使用`round()`: ``` a = 1.1118 b = round(a, 3) print(b) ``` 使用格式化输出: ``` a = 1.1118 print(f'{a:.3f}') ``` 其它语言中也都有类似的机制,就不再赘述了。 现在的问题是,如何使用SQL(SQL Server)来达成我们的目标,而不是使用第三方语言再对数据进行额外处理。 首先,尝试使用round函数,为了便于说明问题,我们直接取一个包含N多位小数的数字,而不是直接从数据库中查询中计算出来的小数。 执行如下查询: >`select round(0.3694826767916468913, 3); ` 结果如下: > 咦,这个结果是什么鬼?把`0.3694826767916468913`变成了`0.3690000000000000000`,看起来更不舒服了。 看了一下微软官网上关于round函数的介绍,其中返回值部分是这样说的: > 也就是说,根据输入的数据来判断输出的类型,所以对于一个小数点后有N位小数的数字而言,它返回的数字也是包含N位小数,也就是说在[SQL Server] SQL中,`round`只负责四舍五入,不负责截短,这和我想要的不一致呀? 如果我们使用的MySQL,那么应该可以用类似如下语句来负责截短: >`SELECT TRUNCATE(135.376, 2);` 然而无论是文档以及实测,都表明MS SQL是不支持`TRUNCATE`函数的,所以得另想办法。 这时候就得请出`CAST`函数了,其语法如下: >`CAST ( expression AS data_type [ ( length ) ] )` 也就是说,可以表达式转换成我们需要的数据类型,回到我们的例子中,我们就可以使用如下语句来处理我们的数据: >`SELECT CAST (0.3694826767916468913 AS decimal (18,3));` 关于decimal数据类型,表示为`decimal[ (p[ ,s] )] `,其实就是我们常用的十进制数,详情可以参考这里:[decimal and numeric (Transact-SQL)](https://learn.microsoft.com/en-us/sql/t-sql/data-types/decimal-and-numeric-transact-sql?view=sql-server-ver16)。 其中`p` (精度),代表要存储的十进制数字的最大总数,默认为18;`s `(比例),代表存储在小数点右侧的小数位数。 上述查询返回如下结果: > 这是我们想要的结果,所以[之前文章中](https://hive.blog/hive-105017/@oflyhigh/6ycw3x-hivesql)的那个SQL就可以修改为: ``` select top 200 current_pays, current_pays_symbol, open_owner, open_pays, open_pays_symbol, CAST(current_pays/open_pays AS decimal (18,3))as price, timestamp from VOFillOrders where current_owner='oflyhigh' order by timestamp desc ``` 也就是说,将之前SQL中的: >`amount_to_sell/min_to_receive as price` 修改为: >`CAST(current_pays/open_pays AS decimal (18,3))as price` 对比下输出,修改之前: > 修改之后: > 很明显,后者舒服多啦,更方便我们阅读和分析。 # 相关链接 * [使用HiveSQL查询历史挂单以及成交](https://hive.blog/hive-105017/@oflyhigh/6ycw3x-hivesql) * [ROUND (Transact-SQL)](https://learn.microsoft.com/en-us/sql/t-sql/functions/round-transact-sql?view=sql-server-ver16) * [CAST and CONVERT (Transact-SQL)](https://learn.microsoft.com/en-us/sql/t-sql/functions/cast-and-convert-transact-sql?view=sql-server-ver16) * [decimal and numeric (Transact-SQL)](https://learn.microsoft.com/en-us/sql/t-sql/data-types/decimal-and-numeric-transact-sql?view=sql-server-ver16)
author | oflyhigh |
---|---|
permlink | ms-sql |
category | hive-105017 |
json_metadata | {"tags":["cn","life","blog","sql","ms-sql"],"image":["https://images.hive.blog/DQmPQVkwTyjuqZgb9w6QZ7MiGRFwLS73NiNcZZiujsfsSDj/image.png","https://images.hive.blog/DQmdn4toyfd1ZSAFQLXrXJZJr7pewXztZsq7hAmG8wxpLTe/image.png","https://images.hive.blog/DQmdLx3SKdgzS3Z9enDyq6VPXH7KSM23cKS4PYFxrGJzABT/image.png","https://images.hive.blog/DQmbrxv37EVYDLsjNRdwTy9ciYrRujUMxf4gNPXpCfzwVbU/image.png","https://images.hive.blog/DQmcEAuJoMVu43eJvk2CPY1icnerZDtGkS8w3JeAi3Rh1js/image.png","https://images.hive.blog/DQmb9Ps3xL7TDvA3d8n2D6XAEcmrmFBfnrPxcjnwynjMUFx/image.png"],"links":["https://pixabay.com/photos/lightbulb-idea-creativity-base-3104355/"],"app":"hiveblog/0.1","format":"markdown"} |
created | 2023-01-24 09:26:33 |
last_update | 2023-01-24 09:26:33 |
depth | 0 |
children | 7 |
last_payout | 2023-01-31 09:26:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 35.478 HBD |
curator_payout_value | 35.435 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,111 |
author_reputation | 6,340,310,694,692,245 |
root_title | 每天进步一点点:MS-SQL保留指定位数小数 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 120,150,774 |
net_rshares | 128,282,480,180,969 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abit | 0 | 27,868,293,766,433 | 100% | ||
adm | 0 | 23,380,281,981,382 | 100% | ||
gerber | 0 | 18,981,169,741 | 13% | ||
daan | 0 | 50,897,382,716 | 8% | ||
ezzy | 0 | 959,811,121 | 13% | ||
ardina | 0 | 17,892,040,877 | 100% | ||
smolalit | 0 | 2,486,405,790 | 100% | ||
deanliu | 0 | 3,973,100,635,177 | 100% | ||
exyle | 0 | 76,868,703,975 | 13% | ||
andyjim | 0 | 488,565,696 | 100% | ||
joythewanderer | 0 | 36,577,803,124 | 100% | ||
alexbezimeni | 0 | 2,217,615,548 | 100% | ||
ace108 | 0 | 807,361,455,505 | 26% | ||
logic | 0 | 185,720,758,457 | 100% | ||
magicmonk | 0 | 4,690,955,768,758 | 100% | ||
laoyao | 0 | 61,134,813,729 | 100% | ||
midnightoil | 0 | 215,421,774,645 | 100% | ||
xiaohui | 0 | 19,168,815,132 | 100% | ||
jphamer1 | 0 | 3,900,656,081,368 | 100% | ||
joele | 0 | 32,911,816,989 | 100% | ||
rivalhw | 0 | 2,237,115,890,720 | 100% | ||
nextgen622 | 0 | 446,542,127,576 | 100% | ||
helene | 0 | 1,238,186,473,434 | 100% | ||
svetlanaaa | 0 | 761,971,221 | 100% | ||
ffcrossculture | 0 | 123,146,116,020 | 100% | ||
penguinpablo | 0 | 273,189,398,599 | 14% | ||
marina007 | 0 | 694,194,043 | 100% | ||
sociopat | 0 | 687,007,078 | 100% | ||
cnfund | 0 | 95,664,874,838 | 50% | ||
funnyman | 0 | 1,371,215,260 | 5.6% | ||
steemcleaners | 0 | 1,625,404,258,203 | 55% | ||
btshuang | 0 | 746,785,498 | 50% | ||
azazqwe | 0 | 35,825,587,488 | 100% | ||
bxt | 0 | 320,456,985,599 | 100% | ||
alexis555 | 0 | 4,404,419,488,911 | 42% | ||
trafalgar | 0 | 22,373,973,571,601 | 49% | ||
itinerantph | 0 | 536,169,711 | 24.5% | ||
raindrop | 0 | 346,604,244,367 | 49% | ||
passion-fruit | 0 | 8,028,161,419 | 95% | ||
fortune-master | 0 | 8,277,717,635 | 100% | ||
nanosesame | 0 | 435,250,999,548 | 80% | ||
exec | 0 | 329,935,712,218 | 100% | ||
alphacore | 0 | 11,541,355,058 | 7.12% | ||
joeyarnoldvn | 0 | 594,060,668 | 1.76% | ||
geekgirl | 0 | 2,424,584,315,523 | 100% | ||
susanli3769 | 0 | 816,928,565,989 | 100% | ||
travelgirl | 0 | 215,558,378,329 | 100% | ||
mygod | 0 | 743,197,974 | 50% | ||
shitsignals | 0 | 556,414,378 | 13% | ||
catwomanteresa | 0 | 364,812,129,613 | 100% | ||
dine77 | 0 | 53,315,877,725 | 70% | ||
oldman28 | 0 | 103,519,751,578 | 60% | ||
jeanlucsr | 0 | 714,334,312 | 1.3% | ||
idx | 0 | 23,419,675,501 | 100% | ||
aafeng | 0 | 887,697,905,115 | 100% | ||
cn-reader | 0 | 17,539,996,258 | 50% | ||
tvb | 0 | 4,136,344,137 | 30% | ||
felander | 0 | 54,900,433,771 | 13% | ||
santigs | 0 | 230,784,025,002 | 50% | ||
floatinglin | 0 | 5,835,894,962 | 100% | ||
mrspointm | 0 | 363,167,456,207 | 100% | ||
stoodkev | 0 | 12,927,290,288,075 | 100% | ||
kimzwarch | 0 | 15,061,656,468 | 4% | ||
yogacoach | 0 | 2,874,127,974 | 13% | ||
joshman | 0 | 164,463,261,537 | 25% | ||
chenlocus | 0 | 70,200,889,176 | 100% | ||
minloulou | 0 | 5,014,578,170 | 70% | ||
msp-makeaminnow | 0 | 14,653,636,008 | 19% | ||
lixing | 0 | 63,424,074,898 | 100% | ||
victory622 | 0 | 191,883,473,016 | 100% | ||
gtpjfoodbank | 0 | 18,602,289,769 | 90% | ||
japanguide | 0 | 1,045,775,878 | 100% | ||
jychbetter | 0 | 401,180,773,552 | 100% | ||
winniex | 0 | 407,743,014,967 | 100% | ||
ibeljr | 0 | 658,914,941 | 40% | ||
etherpunk | 0 | 871,764,466 | 50% | ||
traf | 0 | 1,879,650,103,470 | 49% | ||
ioioioioi | 0 | 1,370,528,457 | 100% | ||
mike50 | 0 | 5,054,268,900 | 100% | ||
itchyfeetdonica | 0 | 599,866,300,954 | 100% | ||
cryptonized | 0 | 22,178,515,390 | 14% | ||
awuahbenjamin | 0 | 503,712,591 | 100% | ||
soufianechakrouf | 0 | 4,986,166,511 | 100% | ||
belemo | 0 | 74,013,147,972 | 100% | ||
mermaidvampire | 0 | 2,081,053,246 | 100% | ||
seikatsumkt | 0 | 5,093,683,660 | 75% | ||
ikrahch | 0 | 203,756,622,172 | 50% | ||
fractal-team | 0 | 1,049,216,850 | 100% | ||
unconditionalove | 0 | 1,634,195,240 | 6.5% | ||
bestboom | 0 | 2,761,752,398 | 13% | ||
aellly | 0 | 159,755,291,753 | 100% | ||
lordbutterfly | 0 | 990,216,976,178 | 100% | ||
themightyvolcano | 0 | 7,232,417,079 | 13% | ||
cedricguillas | 0 | 192,573,268,346 | 100% | ||
el-dee-are-es | 0 | 11,914,720,458 | 10% | ||
meanbees | 0 | 1,672,112,501 | 1.3% | ||
beco132 | 0 | 5,970,947,582 | 80% | ||
leomolina | 0 | 2,205,201,534 | 9% | ||
hmayak | 0 | 33,592,772,796 | 100% | ||
archisteem | 0 | 1,266,693,598 | 7.5% | ||
dses | 0 | 54,386,004,169 | 80% | ||
digital.mine | 0 | 64,199,065,107 | 60% | ||
linco | 0 | 773,590,146 | 11.7% | ||
steemulant | 0 | 115,937,774 | 7.63% | ||
ambiguity | 0 | 40,616,009,472 | 100% | ||
smartvote | 0 | 56,722,416,151 | 2.6% | ||
julian2013 | 0 | 91,588,718,109 | 100% | ||
dlike | 0 | 30,150,156,801 | 13% | ||
voxmortis | 0 | 36,652,455,899 | 20% | ||
pet.society | 0 | 14,278,663,710 | 6% | ||
cherryzz | 0 | 54,862,035,155 | 100% | ||
ziomalek | 0 | 723,130,078 | 100% | ||
newsposter | 0 | 5,731,709,589 | 50% | ||
followjohngalt | 0 | 1,573,665,225 | 12.35% | ||
inurico | 0 | 677,153,017 | 100% | ||
nellon | 0 | 2,397,364,903 | 100% | ||
savonova | 0 | 721,118,296 | 100% | ||
dam4ik2 | 0 | 683,256,647 | 100% | ||
cars-art | 0 | 28,292,784,053 | 100% | ||
francescomai | 0 | 66,414,806,483 | 100% | ||
rasalom | 0 | 17,209,509,369 | 100% | ||
muntaharaceh | 0 | 8,090,561,551 | 100% | ||
jacuzzi | 0 | 1,739,262,797 | 1.4% | ||
lestrange | 0 | 49,194,260,412 | 90% | ||
determine | 0 | 774,830,342 | 13% | ||
elikast | 0 | 13,834,628,918 | 100% | ||
esportleague | 0 | 14,468,010,129 | 100% | ||
fusion.lover | 0 | 35,698,982,160 | 100% | ||
steemtelly | 0 | 2,223,990,270 | 7.63% | ||
hungrybear | 0 | 612,904,163 | 14% | ||
some-asshole | 0 | 947,248,706 | 12.5% | ||
lovelemon | 0 | 34,727,800,483 | 25% | ||
photographercr | 0 | 22,284,002,722 | 9.8% | ||
helgalubevi | 0 | 15,920,535,944 | 100% | ||
minigame | 0 | 369,880,528,718 | 100% | ||
dailyke20 | 0 | 2,509,683,424 | 100% | ||
omnivori | 0 | 1,737,922,247 | 90% | ||
ying82 | 0 | 71,038,656,343 | 100% | ||
jimhawkins | 0 | 522,263,954 | 64% | ||
triplea.bot | 0 | 2,274,840,044 | 13% | ||
tiffin | 0 | 1,368,138,507 | 12.35% | ||
steem.leo | 0 | 10,161,996,984 | 13% | ||
freedomring | 0 | 4,646,246,564 | 100% | ||
janaveda | 0 | 62,161,473,072 | 100% | ||
bilpcoinbot | 0 | 2,086,465,412 | 50% | ||
korver | 0 | 8,542,546,490 | 30% | ||
moleah | 0 | 665,332,125 | 100% | ||
vickyli | 0 | 2,336,774,777 | 100% | ||
icon123456 | 0 | 7,568,769,175 | 100% | ||
marygong77777 | 0 | 18,270,310,707 | 100% | ||
therealyme | 0 | 110,851,074,961 | 1.95% | ||
dbfoodbank | 0 | 5,319,044,051 | 76% | ||
lnakuma | 0 | 36,375,193,147 | 100% | ||
weddinggift | 0 | 6,240,051,842 | 100% | ||
stoodmonsters | 0 | 280,514,481,403 | 100% | ||
ribary | 0 | 4,641,365,050 | 6.5% | ||
sharkthelion | 0 | 2,520,816,359 | 25% | ||
kgsupport | 0 | 2,414,845,513 | 50% | ||
warmstill | 0 | 830,073,181 | 50% | ||
mice-k | 0 | 777,997,635 | 13% | ||
julesquirin | 0 | 2,281,751,046 | 9.8% | ||
dpend.active | 0 | 951,160,689 | 2.6% | ||
shinoxl | 0 | 8,561,023,888 | 100% | ||
lovequeen | 0 | 244,661,975,073 | 100% | ||
hivewatchers | 0 | 11,358,649,809 | 55% | ||
softworld | 0 | 187,521,626,162 | 52% | ||
dcityrewards | 0 | 158,052,983,198 | 13% | ||
sketching | 0 | 614,800,806 | 6.5% | ||
jywahaha | 0 | 486,860,949,871 | 100% | ||
roberto58 | 0 | 9,675,194,850 | 100% | ||
jelly13 | 0 | 512,207,015 | 6.5% | ||
olaunlimited | 0 | 18,393,428,088 | 22.05% | ||
blogstats | 0 | 576,670,754 | 100% | ||
yubaibai6 | 0 | 20,823,607,105 | 100% | ||
philipmak | 0 | 1,531,249,158 | 50% | ||
cocaaladioxine | 0 | 1,492,826,757 | 83% | ||
hivechat | 0 | 661,638,626 | 6.5% | ||
belemo.leo | 0 | 2,714,285,380 | 100% | ||
hectorsanchez18 | 0 | 255,157,367 | 100% | ||
drricksanchez | 0 | 4,670,935,365 | 0.97% | ||
astrocreator | 0 | 195,710,667,551 | 100% | ||
aswita | 0 | 13,141,188,266 | 39.4% | ||
hive.friends | 0 | 0 | 1% | ||
dengyanping888 | 0 | 76,175,096,377 | 100% | ||
tingjie | 0 | 38,060,510,298 | 100% | ||
abundancelife | 0 | 44,965,425,838 | 100% | ||
lovelingling | 0 | 154,950,631,385 | 100% | ||
tina1219 | 0 | 18,004,459,862 | 100% | ||
zhangyan-123 | 0 | 95,184,300,255 | 100% | ||
pishio | 0 | 556,364,413,703 | 10% | ||
rauti | 0 | 4,148,720,857 | 100% | ||
alpha-omega | 0 | 13,744,154,564 | 50% | ||
bai123 | 0 | 2,549,105,401 | 100% | ||
lazy001 | 0 | 267,899,768 | 100% | ||
mimi.ruby | 0 | 174,649,982,648 | 100% | ||
theargirova | 0 | 5,124,020,649 | 54.5% | ||
lauti | 0 | 3,547,815,942 | 100% | ||
miangel100pre | 0 | 2,465,217,438 | 100% | ||
victoraraguayan1 | 0 | 8,768,104,870 | 100% | ||
pappyelblanco | 0 | 1,382,671,576 | 50% | ||
ssebasv | 0 | 3,033,402,455 | 100% | ||
hivefolks | 0 | 22,144,963,900 | 100% | ||
zuun.net | 0 | 8,407,257,459 | 54% | ||
gledys19 | 0 | 8,092,102,283 | 100% | ||
rahim.art72 | 0 | 3,089,644,341 | 100% | ||
emaxisonline | 0 | 12,314,426,083 | 100% | ||
love5200 | 0 | 60,236,804,118 | 100% | ||
xiaoyaodidi | 0 | 38,242,162,492 | 100% | ||
embunpagi | 0 | 1,316,222,808 | 100% | ||
xtrafalgar | 0 | -295,321,985 | -49% | ||
monarchist | 0 | 1,387,139,757 | 75% | ||
paskals | 0 | 0 | 100% | ||
lyamalfonzo23 | 0 | 2,915,067,949 | 49% | ||
bgmoha | 0 | 1,987,138,198 | 70% | ||
vinayj | 0 | 279,546,918 | 24.2% | ||
queercoin | 0 | 34,299,730,518 | 100% | ||
artefactoestudio | 0 | 846,446,687 | 49% | ||
tempest.inyang | 0 | 225,406,955 | 100% | ||
cryptonewzcazter | 0 | 61,466,143 | 100% | ||
skiptvads | 0 | 2,062,187,419 | 10% |
仔细看了很久,除了看不懂之外就剩下看不懂了。
author | aellly |
---|---|
permlink | re-oflyhigh-2023124t21538473z |
category | hive-105017 |
json_metadata | {"tags":["cn","life","blog","sql","ms-sql"],"app":"ecency/3.0.30-vision","format":"markdown+html"} |
created | 2023-01-24 13:05:42 |
last_update | 2023-01-24 13:05:42 |
depth | 1 |
children | 0 |
last_payout | 2023-01-31 13:05:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 866,203,001,491,970 |
root_title | 每天进步一点点:MS-SQL保留指定位数小数 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 120,154,817 |
net_rshares | 0 |
好勤快的O哥😁
author | cherryzz |
---|---|
permlink | re-oflyhigh-2023124t211126442z |
category | hive-105017 |
json_metadata | {"tags":["cn","life","blog","sql","ms-sql"],"app":"ecency/3.0.30-vision","format":"markdown+html"} |
created | 2023-01-24 13:11:27 |
last_update | 2023-01-24 13:11:27 |
depth | 1 |
children | 0 |
last_payout | 2023-01-31 13:11:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 250,193,517,994,706 |
root_title | 每天进步一点点:MS-SQL保留指定位数小数 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 120,154,905 |
net_rshares | 0 |
如果能向O哥这么努力,估计我厦大就考上了😂
author | love5200 |
---|---|
permlink | re-oflyhigh-2023125t02711518z |
category | hive-105017 |
json_metadata | {"tags":["cn","life","blog","sql","ms-sql"],"app":"ecency/3.0.30-vision","format":"markdown+html"} |
created | 2023-01-24 16:27:12 |
last_update | 2023-01-24 16:27:12 |
depth | 1 |
children | 0 |
last_payout | 2023-01-31 16:27:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | 540,513,389,665,028 |
root_title | 每天进步一点点:MS-SQL保留指定位数小数 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 120,159,556 |
net_rshares | 0 |
学霸都是这样的,走到哪学到哪。
author | lovelingling |
---|---|
permlink | re-oflyhigh-2023124t183915694z |
category | hive-105017 |
json_metadata | {"tags":["hive-105017","cn","life","blog","sql","ms-sql"],"app":"ecency/3.0.19-mobile","format":"markdown+html"} |
created | 2023-01-24 10:39:18 |
last_update | 2023-01-24 10:39:18 |
depth | 1 |
children | 0 |
last_payout | 2023-01-31 10:39:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 726,390,445,640,163 |
root_title | 每天进步一点点:MS-SQL保留指定位数小数 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 120,152,048 |
net_rshares | 0 |
👍👍
author | marygong77777 |
---|---|
permlink | parama-1674565497152 |
category | hive-105017 |
json_metadata | "" |
created | 2023-01-24 13:05:00 |
last_update | 2023-01-24 13:05:00 |
depth | 1 |
children | 0 |
last_payout | 2023-01-31 13:05:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2 |
author_reputation | 408,263,235,400,602 |
root_title | 每天进步一点点:MS-SQL保留指定位数小数 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 120,154,810 |
net_rshares | 0 |
真厉害,像你学习!
author | marygong77777 |
---|---|
permlink | parama-1674565691842 |
category | hive-105017 |
json_metadata | "" |
created | 2023-01-24 13:08:15 |
last_update | 2023-01-24 13:08:15 |
depth | 1 |
children | 0 |
last_payout | 2023-01-31 13:08:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 408,263,235,400,602 |
root_title | 每天进步一点点:MS-SQL保留指定位数小数 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 120,154,861 |
net_rshares | 0 |
好好学习 天天向上
author | xiaoyaodidi |
---|---|
permlink | re-oflyhigh-2023124t104217257z |
category | hive-105017 |
json_metadata | {"tags":["hive-105017","cn","life","blog","sql","ms-sql"],"app":"ecency/3.0.36-mobile","format":"markdown+html"} |
created | 2023-01-24 09:42:15 |
last_update | 2023-01-24 09:42:15 |
depth | 1 |
children | 0 |
last_payout | 2023-01-31 09:42:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 420,365,988,556,456 |
root_title | 每天进步一点点:MS-SQL保留指定位数小数 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 120,151,013 |
net_rshares | 0 |