If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > simple create view

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 06-06-06, 17:07
xianwinwin xianwinwin is offline
Registered User
 
Join Date: Jun 2006
Location: NY
Posts: 14
simple create view

Hi guys,
I'm using mysql and for the first time I'm trying to create view in order to facilitate my querys.

I consulted the mysql website with ref to views at:
http://dev.mysql.com/doc/refman/5.0/en/create-view.html

but the most simple statement that i write:

CREATE VIEW testing AS
SELECT * FROM empl WHERE id>864

returns a 1064 ERROR:
[root@localhost:3306] ERROR 1064: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'VIEW ...


does anyone know what am I doing wrong?
Reply With Quote
  #2 (permalink)  
Old 06-06-06, 17:37
dbmab dbmab is offline
Registered User
 
Join Date: Apr 2006
Location: Denver, Co. USA
Posts: 240
Since it is complaining about the VIEW keyword, what version of mysql are you using? You need version 5.0 if you built this yourself and version 5.0.1 if you are using a pre-built binary.
Reply With Quote
  #3 (permalink)  
Old 06-06-06, 17:41
xianwinwin xianwinwin is offline
Registered User
 
Join Date: Jun 2006
Location: NY
Posts: 14
I'm using 4.1.9 does that present a problem?
Reply With Quote
  #4 (permalink)  
Old 06-06-06, 18:14
dbmab dbmab is offline
Registered User
 
Join Date: Apr 2006
Location: Denver, Co. USA
Posts: 240
Yes, VIEW is not available until version 5.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On