About 24,500,000 results
Open links in new tab
  1. MySQL CREATE TABLE Statement - W3Schools

    The CREATE TABLE statement is used to create a new table in a database. .... The column parameters specify the names of the columns of the table. The datatype parameter specifies the type of data the column can hold (e.g. varchar, integer, date, etc.). Tip: For an overview of the available data types, go to our complete Data Types Reference.

  2. Creating Table - MySQL Class 12 CBSE - Alex Sir

    A table is a logically organised format of rows and columns, each row represent a unique record and each column represent a field in the record. Tables are created with 'create table' command. Each table must have at least one column

  3. SQL Class 12 Notes | CBSE Computer Science - techtipnow

    Dec 12, 2022 · SQL Class 12 Notes is prepared for the students learning Computer Science Class 12. This SQL Class 12 Notes covers all the topics of Chapter 8 of NCERT textbook of Computer Science Class 12. It includes all DDL and DML Commands, Aggregate functions, Group By, Joins with many different examples. What …

  4. MySQL CREATE TABLE - GeeksforGeeks

    Jun 5, 2024 · MySQL provides multiple methods for creating tables. The two primary methods include using the Command Line Interface (CLI) and the Graphical User Interface (GUI) provided by MySQL Workbench. MySQL Command Line Client allows you to create a table using the CREATE TABLE statement.

  5. 20 MySQL Queries for CBSE Class 12 Practical File with Output

    Here are 20 MySQL queries commonly used in CBSE Class 12 practicals, complete with their descriptions and outputs. 1. Create a Table. Query. RollNo INT PRIMARY KEY, Name VARCHAR(50), Class VARCHAR(10), Marks INT, Gender CHAR(1) Table created successfully. 2. Insert Records into Table. Query. 5 rows inserted. 3. Display All Records. Query. Output.

  6. MySql Class 12 Notes - CBSE Skill Education

    3 days ago · Create table. The CREATE TABLE is used for creating a table in a database. In the CREATE TABLE command, the column name and data type must be specified. CREATE TABLE table_name ( column1 datatype, column2 datatype, ....

  7. MySQL CREATE TABLE - MySQL Tutorial

    The CREATE TABLE statement allows you to create a new table in a database. The following illustrates the basic syntax of the CREATE TABLE statement: CREATE TABLE [ IF NOT EXISTS ] table_name( column1 datatype constraints , column2 datatype constraints , ...

  8. Creating a table in MySQL - MySQL Tutorial

    MySQL Workbench is a GUI tool which is can be used to create tables, views, indexes quickly and efficiently. To create a new table in MySQL, you need to launch the MySQL Workbench and log in using the username and password. You can follow our tutorial on how to connect MySQL using MySQL Workbench.

  9. Introduction to MySQL Notes Class 12 - CBSE Python

    To work with this database this database should be opened using USE statement, as follows. To see the tables present in a database, the statement. SHOW TABLES; can be used. Data Types: Commonly used data types available in MySQL are: 1. INT: A normal–sized integer that can be signed or unsigned.

  10. MySQL :: MySQL Tutorial :: 4.2 Creating a Table

    Use a CREATE TABLE statement to specify the layout of your table: mysql> CREATE TABLE pet (name VARCHAR(20), owner VARCHAR(20), species VARCHAR(20), sex CHAR(1), birth DATE, death DATE); VARCHAR is a good choice for the name, owner, and species columns because the column values vary in length.

  11. Some results have been removed
Refresh