在 Oracle 中以&符号为前缀的查询有效,但在 MySQL 中无效?
在 Oracle 中使用&符号有效。要在 MySQL 中使其有效,请按照以下语法所示使用@−
SET @yourVariableName1 = yourValue, @yourVariableName2 = yourValue, @yourVariableName3 =yourValue,.........N; insert into yourTableName values(@yourVariableName1,@yourVariableName2,@yourVariableName3,........N);
要了解以上的语法,让我们创建一个表。创建表的查询如下−
mysql> create table Student_Information -> ( -> StudentId int, -> StudentName varchar(100), -> StudentAge int, -> StudentMarks int, -> StudentCountryName varchar(10) -> ); Query OK, 0 rows affected (0.75 sec)
以下是用@为前缀的值的查询。使用插入命令在表中插入一些记录。−
mysql> SET @Id = 10001, @Name = 'Carol', @Age =23 ,@Marks =89, @CountryName = 'US'; Query OK, 0 rows affected (0.00 sec) mysql> insert into Student_Information values(@Id, @Name, @Age ,@Marks, @CountryName); Query OK, 1 row affected (0.19 sec)
现在,您可以使用select语句显示表中的所有记录。查询如下−
mysql> select *from Student_Information;
以下是输出−
+-----------+-------------+------------+--------------+--------------------+ | StudentId | StudentName | StudentAge | StudentMarks | StudentCountryName | +-----------+-------------+------------+--------------+--------------------+ | 10001 | Carol | 23 | 89 | US | +-----------+-------------+------------+--------------+--------------------+ 1 row in set (0.00 sec)
广告