Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
akpofureenughwu
Creator III
Creator III

Data Manipulation from SQL

Hello there, I need clarity on how I can pick key data value from a SQL table on QV. See the attached file for illustration...

Let say as a sport analyst,

I want to pick just the Goal on Bendel boys... How do I do it?

Thanks in advance..

1 Solution

Accepted Solutions
sunny_talwar

May be using a Where Statement:

LOAD *

Where Team = 'Bendel Boys';

SQL SELECT *

FROM....

View solution in original post

2 Replies
sunny_talwar

May be using a Where Statement:

LOAD *

Where Team = 'Bendel Boys';

SQL SELECT *

FROM....

akpofureenughwu
Creator III
Creator III
Author

Correct