diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,3 +1,7 @@
+## 0.6.2.0
+
+- Make InsertQuery type as PreparedNoFetch instance.
+
 ## 0.6.1.0
 
 - Add a configuration flag to pring verbose compile-time messages.
diff --git a/relational-query.cabal b/relational-query.cabal
--- a/relational-query.cabal
+++ b/relational-query.cabal
@@ -1,5 +1,5 @@
 name:                relational-query
-version:             0.6.1.0
+version:             0.6.2.0
 synopsis:            Typeful, Modular, Relational, algebraic query engine
 description:         This package contiains typeful relation structure and
                      relational-algebraic query building DSL which can
diff --git a/src/Database/Relational/Query/Type.hs b/src/Database/Relational/Query/Type.hs
--- a/src/Database/Relational/Query/Type.hs
+++ b/src/Database/Relational/Query/Type.hs
@@ -272,6 +272,9 @@
 instance UntypeableNoFetch Insert where
   untypeNoFetch = untypeInsert
 
+instance UntypeableNoFetch InsertQuery where
+  untypeNoFetch = untypeInsertQuery
+
 instance UntypeableNoFetch Update where
   untypeNoFetch = untypeUpdate
 
