2

My question is very similar to this one. The difference being I want multiple fields where they wanted only a single field.

I'm trying to create a virtual copy of my layer with only the following fields: "Acres", "Zoning", and "LinktoSOA".

I've tried these queries, but neither worked.

Select geometry, IN ["Acres", "Zoning", "LinktoSOA"]
from "WilmingtonParcels"
Select geometry, IN {"Acres", "Zoning", "LinktoSOA"}
from "WilmingtonParcels"
Select geometry, IN ("Acres", "Zoning", "LinktoSOA")
from "WilmingtonParcels"
Taras
35.8k5 gold badges77 silver badges152 bronze badges
asked Oct 15, 2020 at 13:00

1 Answer 1

2

I found a solution.

Select geometry, "Acres", "Zoning", "LinktoSOA"
from "WilmingtonParcels"

enter image description here

Taras
35.8k5 gold badges77 silver badges152 bronze badges
answered Oct 15, 2020 at 13:00

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.