skip to Main Content

How to insert nested JSON into PostgreSQL

CREATE TABLE Log ( "Name" TEXT, "Age" TEXT, "Country" TEXT, "Numbers" TEXT ); SELECT "Country", "Numbers" FROM json_populate_record( null:: log, '{ "Name": "qazwsx", "HostName": "Age", "Address": { "Country": "MNB", "Numbers": [ { "Cell": 7418520 } ] } }'); SELECT *…

VIEW QUESTION

fetch image from URL Javascript – Jquery

How I can make this var imageurl = 'https://tr.wikipedia.org/wiki/' let queryimage = `${imageurl}Dosya:${cityName}.jpg` console.log(queryimage) When ı look console ı see this ; https://tr.wikipedia.org/wiki/Dosya:england.jpg thats ok but now How ı can download image on this page https://tr.wikipedia.org/wiki/Dosya:england.jpg

VIEW QUESTION
Back To Top
Search