tags:

views:

1340

answers:

5

Hi,

I am trying to create a view for the following query.

SELECT DISTINCT
  products.pid        AS id,
  products.pname      AS name,
  products.p_desc     AS description,
  products.p_loc      AS location,
  products.p_uid      AS userid,
  products.isaproduct AS whatisit
FROM products
UNION
SELECT DISTINCT
  services.s_id       AS id,
  services.s_name     AS name,
  services.s_desc     AS description,
  services.s_uid      AS userid,
  services.s_location AS location,
  services.isaservice AS whatisit
FROM services

But not able to do so. I am using MySql query browser. The error I am getting is:

A view can only be created from an active resultset of SELECT command

Can someone please help me with this?

+3  A: 

You might want to swith the order of userid and location in the second select. The column names should match 1 to 1 in all selects of the union.

EDIT : For query browser , as this points out "To create a view from a query, you must have executed the query successfully. To be more precise, the view is created from the latest successfully executed query, not necessarily from the query currently in the Query Area"

so you need to execute the query first before you create the view in query browser.

The error is from the query browser and not mysql.

Learning
Tried that... Same result
@Learning, are you trying these suggestions? I didn't need to execute the query first. I executed some other query, then executed "CREATE VIEW ... " and it worked fine.
le dorfier
no I'm not. I do not have access to mysql. I'm just trying to help.
Learning
Your link suggests you might be right - I don't have that query browser, but it works ok in sqlyog.
le dorfier
A: 

You have different types being unioned into the same column. (The names can be different, but the types have to be the same, or at least auto-castable.) But as @Learning points out, it looks like you've twisted the SELECT column enumerations.

Just in case, the proper syntax (which worked for me) is

CREATE VIEW myView 
AS  
SELECT ...
le dorfier
if column names are different what column name would be reported when we do a select * from the view?
Learning
The first one. Try it and see (which is what I did.)
le dorfier
The UNION part is working fine.. But I when I try to create a view for this UNION. I'm getting the following error:A view can only be created from an active resultset of SELECT command I amd using MySql query browser
oh .. ok. Sybase is less forgiving. Thanks for the clarification.
Learning
Hmmm ... I could create the union. In fact, I could create it with mixed data types. I googled for your error msg and found nothing, too.
le dorfier
Are you able to create a view at all? Try it with just "CREATE VIEW vWhatever AS SELECT pid FROM products" and work forward from there.
le dorfier
Yes i am able to do so..
OK, just add pieces from there until you know which part makes it fail.
le dorfier
The error message is in "QueryBrowser.pas", part of mysql-gui-tools. Looking into the source code, it is triggered by a) not having an active result set and b) the query having the wrong type. Does removing the "DISTINCT" make any difference? In any case, this is a bug in QueryBrowser, not in MySQL.
Tomalak
A: 

The error message is in "QueryBrowser.pas", part of mysql-gui-tools.

procedure TQueryBrowserForm.SQLCreateViewClick(Sender: TObject);
// ... 
begin
  if Assigned(ActiveResultset) and (ActiveResultset.ResultSet.query.query_type = MYX_QT_SELECT)then
    // ... 
  else
    ShowError('Creation error', _('A view can only be created from a active resultset of SELECT command.'), []);
end;

It is triggered by a) not having an active result set and b) the query having the wrong type.

Does removing the "DISTINCT" make any difference? In any case, this is a bug in QueryBrowser, rather than one MySQL. Creating the view directly in MySQL should suffice as a work-around.

Tomalak
A: 
CREATE VIEW vw_product_services AS
SELECT DISTINCT products.pid AS id,
                products.pname AS name,
                products.p_desc AS description,
                products.p_loc AS location,
                products.p_uid AS userid,
                products.isaproduct AS whatisit
           FROM products
          UNION
          SELECT DISTINCT services.s_id AS id,
                services.s_name AS name,
                services.s_desc AS description,
                services.s_uid AS userid,
                services.s_location AS location,
                services.isaservice AS whatisit
           FROM services

I tried this and it worked! Thanks everyone :)

A: 

Just a little remark about UNION. UNION only returns the distinct values of your resultset. So there is no need to use SELECT DISTINCT combined with a UNION. Probably better for performance to not use DISTINCT too.

More info on UNION can be found here: link text