About 700,000 results
Open links in new tab
  1. How do I get the creation date of a MySQL table? [duplicate]

    May 21, 2013 · You would query the information_schema for the create_time of the table. For instance: SELECT create_time FROM INFORMATION_SCHEMA.TABLES WHERE …

    Missing:

    • PPT

    Must include:

  2. Get the Creation Date of a MySQL Table - Online Tutorials Library

    To get the creation date of a MySQL table, use create_time from information_schema.tables. The syntax is as follows − SELECT create_time FROM INFORMATION_SCHEMA.TABLES …

    Missing:

    • PPT

    Must include:

  3. Create Table syntax: create table table_name (column_name1 data_type(size) constraint , column_name2 data_type(size) constraint, column_name3 data_type(size) constraint::); e.g. …

  4. PPT - Creating Database Tables PowerPoint Presentation

    Mar 9, 2019 · Review: Creating a Database Table CREATE TABLE table_name (field1_name datatype size, field2_name datatype size, …) CREATE TABLE candy_purchase( purch_id …

  5. STUDENTS=(SID,FNAME,LNAME,MINIT) CREATING A TABLE IN SQL create table students ( sid varchar(5), fname varchar(20), lname varchar(20), minit char); BASIC DATA TYPES …

  6. PPT - MySQL Fundamentals: Queries, Tables, and Database …

    Jan 5, 2025 · Creating a Table • To create a table, use the CREATE TABLE command: mysql> CREATE TABLE pet ( -> name VARCHAR(20), -> owner VARCHAR(20), -> species …

  7. Get Creation and Update Dates of Tables in MySQL - Online …

    Learn how to retrieve the creation and update dates of tables in MySQL efficiently with this comprehensive guide.

    Missing:

    • PPT

    Must include:

  8. How do I get the creation date of a MySQL database?

    May 4, 2018 · SELECT table_schema AS Database_Name, MIN(create_time) AS Creation_Time FROM information_schema.tables WHERE table_schema = 'YOUR_DATABASE_NAME' …

    Missing:

    • PPT

    Must include:

  9. Get Creation Date of a MySQL Table - Online Tutorials Library

    To get the creation date of MySQL table, use the information_schema. The syntax is as follows −. SELECT create_time FROM INFORMATION_SCHEMA.TABLES WHERE table_schema = …

    Missing:

    • PPT

    Must include:

  10. mysql - Is there any way to get list of tables by created on date ...

    Dec 26, 2019 · If you want to find by a particular created date then: SELECT * FROM information_schema.tables where TABLE_SCHEMA = 'YOUR_DATABASE_NAME' AND …

    Missing:

    • PPT

    Must include:

  11. Some results have been removed