Completion works on almost all SQL and DDL constructs:
Key words, this includes SQL standard keywords as well as those key words delivered by the JDBC driver.
Tables
Columns
Views
Stored procedures, completion generates the complete JDBC call syntax including templates for parameters.
Catalogs
Schemas
Copy database tables (indexes and primary/foreign keys) between database sessions (The sessions can be betweendifferent databases)
即,可以在同一个数据库或不同数据库中,直接迁移一个或多个数据表!如此,我们就可以省去了不同方言的建表语句,以及数据导出成txt,再导入到另外数据库的繁琐操作。
tips:有大量数据的数据表移动没有试过。同时,需要对迁移结果表进行正确性检查,看表的字段类型,以及是否有乱码。
There are two new menu items available by right-clicking on certain database objects in the object tree. They are "Copy Table" and "Paste Table". They are accessed as follows:
Open two session windows (same or different database types)
Select a schema/user in the object tree of one session and click on TABLE to expose the tables in that schema.
Select one or more tables in that object tree.
Right-click on the hightlighted tables and choose “Copy Table”.
SELECT * FROM citys where CITY_ID = ‘860001‘;
SELECT * FROM citys where CITY_ID = ‘860002‘; SELECT * FROM citys where CITY_ID = ‘860003‘; SELECT * FROM citys where CITY_ID = ‘860004‘; |
SELECT * FROM citys where CITY_ID = :cityId;
|
SQuirreL SQL Client使用入门2---插件使用
原文地址:http://blog.csdn.net/ycpanda/article/details/46239537