Question overpass query

Hi guys

Can u plz help me.
I need an output:csv query for:
Country:Austria, City:Salzburg

  • all Streets
    output:
    Street, City, Country

Many,many thx

cheers, W

What parts of the documentation about overpass-api and overpass-turbo have you browsed so far?

What was the first step you tried to get a query working?

Is there any part that does not work for you?

[out:csv (“name”)][timeout:2500];
{{geocodeArea:Salzburg}}->.searchArea;
(
way[“highway”]“name”;
);
for (t[“name”])
{
make street name=_.val;
out;
}

Only name of all types of highways, maybe something like this?

[out:csv(“name”)];
{{geocodeArea:Salzburg}}->.searchArea;
(
way[highway]name;
);
out;

Hi
Yes, like this, but i wanna need a 2nd ,
Street | City
means, the street, and the City , where’s the street located.
thx