tencent cloud

Preprocessing
Last updated: 2024-01-06 17:34:55
Preprocessing
Last updated: 2024-01-06 17:34:55
Supported SQL syntax:
PREPARE Syntax
EXECUTE Syntax
Supported binary protocols:
COM_STMT_PREPARE
COM_STMT_EXECUTE
Sample:
mysql> select * from test1;
+---+------+
| a | b |
+---+------+
| 5 | 6 |
| 3 | 4 |
| 1 | 2 |
+---+------+
3 rows in set (0.03 sec)
mysql> prepare ff from "select * from test1 where a=?";
Query OK, 0 rows affected (0.00 sec)
Statement prepared

mysql> set @aa=3;
Query OK, 0 rows affected (0.00 sec)

mysql> execute ff using @aa;
+---+------+
| a | b |
+---+------+
| 3 | 4 |
+---+------+
1 row in set (0.06 sec)
Was this page helpful?
You can also Contact Sales or Submit a Ticket for help.
Yes
No

Feedback