필터 지우기
필터 지우기

Assign two variables to a SQL Query

조회 수: 10 (최근 30일)
Cristian Martin
Cristian Martin 2022년 6월 12일
댓글: Rik 2022년 6월 15일
Hi,
x=TOYOTA;
Y=9981;
conn = database('baza_date','','');
sqlquery = ['UPDATE prices.prices SET Product =',num2str(x), 'WHERE Crt = ', num2str(y)];
data = fetch(conn,sqlquery);
exec(conn,sqlquery);
close(conn);
Error:
Error using database/fetch (line 40)
[MySQL][ODBC 8.0(a) Driver][mysqld-8.0.29]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 'Crt = 9981' at line 1
Error in bdmodify>pushbutton12_Callback (line 509)
data = fetch(conn,sqlquery);
Error in gui_mainfcn (line 95)
feval(varargin{:});
Error in bdmodify (line 42)
gui_mainfcn(gui_State, varargin{:});
If I use a single variable for query it worked if I use both i recieve this error, i guess i didn't write the code ok, do you know?

채택된 답변

Rik
Rik 2022년 6월 13일
I suspect you're missing a space before 'WHERE'. I can recommend using sprintf to avoid such errors.
  댓글 수: 2
Cristian Martin
Cristian Martin 2022년 6월 15일
Indeed that was it, thanks!
Rik
Rik 2022년 6월 15일
You're welcome

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Database Toolbox에 대해 자세히 알아보기

제품


릴리스

R2016a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by