关于mysql中的dual表

之前写sql,插入前检查是否存在,语句中,有dual表,这个不曾了解过,就去看了一下,在此做下记录。

INSERT INTO tag_info (tagContent)
    SELECT  'test'  
    from DUAL  
    where not exists(select tagId from tag_info where tagContent='test');

看着上面的语句,查询dual表,无外乎就是做了一个临时表而已。

官方文档就解释


You are permitted to specify DUAL as a dummy table name 
in situations where no tables are referenced:

不知道涉及哪个表的时候,可以指定DUAL作为一个假的表名:

这个表在较老版本,应该是没有。不过最新的版本都已经有了。上述的语法应该就是它比较常见的应用场景了。

我们也可以用一张只有一条记录的表来模拟dual表,也是可以的。
就像这个一样,链接。

你可能感兴趣的:(mysql)