diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..26d3352
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,3 @@
+# Default ignored files
+/shelf/
+/workspace.xml
diff --git a/.idea/SQL.GiveMeTheGoods.iml b/.idea/SQL.GiveMeTheGoods.iml
new file mode 100644
index 0000000..d6ebd48
--- /dev/null
+++ b/.idea/SQL.GiveMeTheGoods.iml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..639900d
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..4448e79
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml
new file mode 100644
index 0000000..797acea
--- /dev/null
+++ b/.idea/runConfigurations.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..35eb1dd
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/answers/exercise1.sql b/answers/exercise1.sql
index e69de29..b8692a2 100644
--- a/answers/exercise1.sql
+++ b/answers/exercise1.sql
@@ -0,0 +1,3 @@
+SELECT *
+FROM Students
+WHERE City LIKE '^.a.*'
\ No newline at end of file
diff --git a/answers/exercise10.sql b/answers/exercise10.sql
index e69de29..a73b084 100644
--- a/answers/exercise10.sql
+++ b/answers/exercise10.sql
@@ -0,0 +1,3 @@
+SELECT PostalCode
+AS Zip
+FROM Students;
\ No newline at end of file
diff --git a/answers/exercise11.sql b/answers/exercise11.sql
index e69de29..3400c2e 100644
--- a/answers/exercise11.sql
+++ b/answers/exercise11.sql
@@ -0,0 +1,2 @@
+ALTER TABLE Students
+RENAME TO Learners;
\ No newline at end of file
diff --git a/answers/exercise2.sql b/answers/exercise2.sql
index e69de29..024ac62 100644
--- a/answers/exercise2.sql
+++ b/answers/exercise2.sql
@@ -0,0 +1,3 @@
+SELECT *
+FROM Students
+WHere City LIKE '^[acs]';
\ No newline at end of file
diff --git a/answers/exercise3.sql b/answers/exercise3.sql
index e69de29..c9d8be7 100644
--- a/answers/exercise3.sql
+++ b/answers/exercise3.sql
@@ -0,0 +1,3 @@
+SELECT *
+FROM Students
+WHERE City LIKE '^[a-f]';
\ No newline at end of file
diff --git a/answers/exercise4.sql b/answers/exercise4.sql
index e69de29..fd4a081 100644
--- a/answers/exercise4.sql
+++ b/answers/exercise4.sql
@@ -0,0 +1,3 @@
+SELECT *
+FRO Students
+WHERE City LIKE '^[^acf]';
\ No newline at end of file
diff --git a/answers/exercise5.sql b/answers/exercise5.sql
index e69de29..dca5cd7 100644
--- a/answers/exercise5.sql
+++ b/answers/exercise5.sql
@@ -0,0 +1,3 @@
+SELECT *
+FROM Students
+WHERE Country IN ('Sint Maarten', 'Haiti');
diff --git a/answers/exercise6.sql b/answers/exercise6.sql
index e69de29..35b1056 100644
--- a/answers/exercise6.sql
+++ b/answers/exercise6.sql
@@ -0,0 +1,3 @@
+SELECT *
+FROM Students
+WHERE Country NOT IN ('Sint Maarten', 'Haiti');
diff --git a/answers/exercise7.sql b/answers/exercise7.sql
index e69de29..9ad2b4b 100644
--- a/answers/exercise7.sql
+++ b/answers/exercise7.sql
@@ -0,0 +1,3 @@
+SELECT *
+FROM Courses
+WHERE CreditHours BETWEEN 10 AND 20;
diff --git a/answers/exercise8.sql b/answers/exercise8.sql
index e69de29..7744aab 100644
--- a/answers/exercise8.sql
+++ b/answers/exercise8.sql
@@ -0,0 +1,3 @@
+SELECT *
+FROM Courses
+WHERE CreditHours NOT BETWEEN 10 AND 20;
\ No newline at end of file
diff --git a/answers/exercise9.sql b/answers/exercise9.sql
index e69de29..70794e7 100644
--- a/answers/exercise9.sql
+++ b/answers/exercise9.sql
@@ -0,0 +1,3 @@
+SELECT *
+FROM Courses
+WHERE CourseName BETWEEN 'ColdFusion' AND 'Python' ORDER BY CourseName ASC;
\ No newline at end of file