美文网首页
mysql 数据库基本操作

mysql 数据库基本操作

作者: const_qiu | 来源:发表于2020-09-21 13:52 被阅读0次
    数据表runoob_tbl
    • 查询
      select * from runoob_tbl
      联合查询
      select runoob_id,runoob_title,runoob_author from runoob_tbl union select id,name,tel_num from student;
      结果:
      联合查询结果

    两个表的查询的列数一定是相同的,且列名是第一个表中的查询列名。

    • where 条件


      where 条件
      where+like

    相关文章

      网友评论

          本文标题:mysql 数据库基本操作

          本文链接:https://www.haomeiwen.com/subject/cpresktx.html