MySQL Forums
Forum List  »  Microsoft Access

Re: SQL Statements from Access to MySQL
Posted by: Roland Bouman
Date: November 05, 2005 07:54AM

1) just: IF(expr, trueValue, FalseValue). see http://dev.mysql.com/doc/refman/5.0/en/control-flow-functions.html

2) use mysql 5, and wrap it into a procedure:

delimiter //

create procedure myQuery(
p_parameter somedatatype
)
select *
from myTable
where somecolumn = p_parameter;
//

see: http://dev.mysql.com/doc/refman/5.0/en/stored-procedures.html

Options: ReplyQuote


Subject
Views
Written By
Posted
18384
October 31, 2005 07:56PM
Re: SQL Statements from Access to MySQL
6778
November 05, 2005 07:54AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.