ipython-sql
ipython-sql copied to clipboard
%%sql vs %sql
Excuse me for probably an obvious question, but still I have to ask.
What is the difference between %sql and %%sql commands?
%sql is line magic. You must finish your statement in this line. %%sql is cell magic. Your query can have multiple lines.