ClickHouse/docs/fa/sql_reference/table_functions/url.md
2020-04-04 12:15:31 +03:00

1.0 KiB
Raw Blame History

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

مقاله اصلی