Author name: Debendra Nath Sarkar

SQL SELECT
SQL

SQL SELECT Statement

The SQL SELECT Statement is the most commonly used command in Structured Query Language. It is used to access the records from one or more database tables and views. SQL SELECT Query: The SELECT statement in SQL is used to fetch or retrieve data from a database. It allows users to access the data and […]

SQL SELECT Statement Read Post »

SQL CREATE TABLE
SQL

SQL CREATE TABLE

SQL CREATE TABLE statement is used to create table in a database. Let’s see the simple syntax to create the table. CREATE TABLE Syntax: CREATE table table_name(Column1 datatype (size),column2 datatype (size),..columnN datatype(size)); Here table_name is name of the table, column is the name of column. Users can define the table structure by specifying the column’s

SQL CREATE TABLE Read Post »

Scroll to Top