Langsung ke konten utama

Postingan

Menampilkan postingan dari Agustus, 2021

Memilih Wilayah Cloud Infrastructure

Memilih Wilayah Saat menentukan Wilayah yang tepat untuk layanan, data, dan aplikasi Anda, pertimbangkan empat faktor bisnis berikut. Untuk mempelajari selengkapnya, pilih simbol + di samping setiap kategori. Kepatuhan terhadap tata kelola data dan persyaratan hukum– Bergantung pada perusahaan dan lokasi Anda, Anda mungkin perlu menjalankan data dari wilayah tertentu. Misalnya, jika perusahaan Anda membutuhkan semua datanya agar bisa menetap di perbatasan Inggris, Anda akan memilih Wilayah London. Tidak semua perusahaan memiliki peraturan data untuk lokasi tertentu, jadi Anda mungkin perlu lebih fokus pada tiga faktor lainnya. Kedekatan dengan pelanggan Anda– Dengan memilih Wilayah yang dekat dengan pelanggan, Anda bisa membantu mereka mendapatkan konten lebih cepat. Misalnya, perusahaan Anda berbasis di Washington, DC, dan banyak pelanggan Anda tinggal di Singapura. Anda mungkin mempertimbangkan untuk menjalankan infrastruktur di Wilayah Virginia Utara supaya dekat dengan kantor pusat...

PostgreSQL mencari kata yang mirip dan Rank similarity

 Y ou will match against a  tsquery  to determine if the phrase "Astounding Drama" leads to more rentals per month. Next, create a new column using the  similarity  function to rank the film descriptions based on this phrase. Select the title and description for all DVDs from the   film   table. Perform a full-text search by converting the description to a   tsvector   and match it to the phrase   'Astounding & Drama'   using a   tsquery   in the   WHERE   clause. Add a new column that calculates the similarity of the description with the phrase 'Astounding Drama'. Sort the results by the new similarity column in descending order. -- Select the title and description columns SELECT       title ,      description   FROM      film WHERE      -- Match "Astounding Drama" in the descript...

PostgreSQL Cari text tanpa peduli besar kecil dan posisi

  Select the  title  and  description  columns from the  film  table. Perform a full-text search on the  title  column for the word  elf . -- Select the title and description SELECT   title ,   description FROM   film -- Convert the title to a tsvector and match it against the tsquery  WHERE   to_tsvector ( title )   @@   to_tsquery ( 'elf' ); title description GHOSTBUSTERS ELF A Thoughtful Epistle of a Dog And a Feminist who must Chase a Composer in Berlin ELF MURDER A Action-Packed Story of a Frisbee And a Woman who must Reach a Girl in An Abandoned Mine Shaft ENCINO ELF A Astounding Drama of a Feminist And a Teacher who must Confront a Husband in A Baloon

PostgreSQL Potong Tulisan bukan ditengah Kata

Get the first 50 characters of the  description  column Determine the position of the last whitespace character of the truncated  description  column and subtract it from the number 50 as the second parameter in the first function above.   SELECT      UPPER ( c . name )   ||   ': '   ||   f . title   AS   film_category ,      -- Truncate the description without cutting off a word    LEFT ( description ,   50   -        -- Subtract the position of the first whitespace character      POSITION (        ' '   IN   REVERSE ( LEFT ( description ,   50 ))      )    )   FROM      film   AS   f      INNER   JOIN   film_category ...