摘要:
1.select查询语句 1.查询表中所有的数据 # 很危险,数据量过大,容易导致down机 mysql> select * from student; # 先查询数据总量,然后决定是否可以查询所有数据 mysql> select count(*) from student; + + | count 阅读全文
摘要:
1.insert 命令 1.查看表结构 mysql> desc student; + + + + + + + | Field | Type | Null | Key | Default | Extra | + + + + + + + | id | int(11) | NO | PRI | NULL 阅读全文