Getting started with notebook
# Databricks notebook source %sqlcreate database if not exists abcdb %sqluse abcdb %sqlcreate table student (id int , name string) %sqlinsert into studentselect 1 as id, ‘user1’ as name %sqlselect * from student spark.sql(“create database if not exists xyzdb”)spark.sql(“use xyzdb”) # Use three double quotes (“””) if SQL…