`include vs import

Dave’s blog could have answered this for you.

To explain in simple terms,
1)we use import for importing a package. Using import you can select components of a package like a class or a task or “*” to import complete package.
2)we use include to physically place the code of a file while compiling. With include, you just get entire code here but cannot have part of the include file.

Thanks,
Sireesh K