如何使用Navicat呢?
当Navicat配置好后,链接上数据库后。
点击查询后tables中的任意一个新建查询,这时就会跳出一个查询编辑器。
我在初始sql是就创建了stu表。这里就不创建了。
先选择需要的表, select * from 表名;
添加:
INSERT into 表名(列名1.....) values(值1.....)
例如:
INSERT into stu(id,name) values(1,'张三');
在选择select 行 右键运行就可以查看的到。下面的就运行省略这句话。
更新:
update 表名 set 列名 1 = 值1 where name = .....
如果没有加 where 会全部变成 值1
删除:
delete from 表名 where 条件;
否之会全部删除;
delete from stu where name = '张三';
来源地址:https://blog.csdn.net/zhi6fui/article/details/130092193