mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 20:02:05 +00:00
1.0 KiB
1.0 KiB
machine_translated | machine_translated_rev | toc_priority | toc_title |
---|---|---|---|
true | d734a8e46d |
41 | نشانی وب |
نشانی وب
url(URL, format, structure)
- بازگرداندن یک جدول ایجاد شده از URL
با توجه به
format
و structure
.
نشانی وب-نشانی کارساز اچتیتیپ یا اچتیتیپس که میتواند بپذیرد GET
و / یا POST
درخواست.
قالب - قالب از داده ها.
ساختار-ساختار جدول در 'UserID UInt64, Name String'
قالب. تعیین نام ستون و انواع.
مثال
-- getting the first 3 lines of a table that contains columns of String and UInt32 type from HTTP-server which answers in CSV format.
SELECT * FROM url('http://127.0.0.1:12345/', CSV, 'column1 String, column2 UInt32') LIMIT 3