From 04f49ef170120e17d7eee6b776a1f0b9abcf370d Mon Sep 17 00:00:00 2001 From: GowthamRaj K <43011442+gowthamrajk@users.noreply.github.com> Date: Thu, 29 Jul 2021 08:16:47 +0530 Subject: [PATCH] Update README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 380aa65..0221dd8 100644 --- a/README.md +++ b/README.md @@ -653,4 +653,11 @@ There are different types of joins available in SQL − - A field with a NULL value is a field with no value. - It is very important to understand that a NULL value is different than a zero value or a field that contains spaces. - + CREATE TABLE CUSTOMERS( + ID INT NOT NULL, + NAME VARCHAR (20) NOT NULL, + AGE INT NOT NULL, + ADDRESS CHAR (25) , + SALARY DECIMAL (18, 2), + PRIMARY KEY (ID) + );