“SQL Buat tabel sebagai” Kode Jawaban

Buat Tabel SQL

CREATE TABLE table_name(
  	id INT AUTO_INCREMENT PRIMARY KEY,  
  	name VARCHAR(255), # String 255 chars max
  	date DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
  	longtext BLOB
);
Matteoweb

SQL Buat tabel sebagai

CREATE TABLE USACustomers
AS (
  SELECT *
  FROM Customers
  WHERE country = 'USA'
);
SAMER SAEID

SQL Buat tabel

sdfksdmf
Encouraging Elephant

Jawaban yang mirip dengan “SQL Buat tabel sebagai”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya