In The World
Showing posts with label Mysql Programming. Show all posts
Showing posts with label Mysql Programming. Show all posts
Thursday, 11 April 2024

Cara membuat table primary key auto increment mysql

›
  CREATE TABLE table1_seq ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY ); CREATE TABLE table1 ( id VARCHAR(7) NOT NULL PRIMARY KEY DEFAU...
Sunday, 31 March 2024

Cara mereset auto increment pada Mysql

›
Dalam merancang sebuah tabel dalam database mysql dengan tipe angka, kemudian dijadikan index primary key dengan tambahan fitur AUTO_INCREME...
Monday, 25 March 2024

How to alter tabel auto increment mysql

›
CREATE TABLE ALLITEMS( itemid INT(10)UNSIGNED, itemname VARCHAR(50) ); ALTER TABLE ALLITEMS CHANGE itemid itemid INT(10)AUTO_INCREME...
Tuesday, 20 June 2023

Cara menampilkan data terakhir pada pemrograman database mysql

›
  Pada kesempatan kali ini saya akan berbagi informasi yaitu "Cara menampilkan data terakhir pada  pemrograman database mysql". ...
2 comments:
Tuesday, 30 May 2023

How to add unique constraint in mysql

›
UNIQUE Constraint on ALTER TABLE To create a  UNIQUE  constraint on the "ID" column when the table is already created, use the fol...
Sunday, 24 November 2013

Perintah-Perintah dasar Mysql (Mysql Command)

›
This is a list of handy MySQL commands that I use time and time again. At the bottom are statements, clauses, and functions you can use in M...
›
Home
View web version
Powered by Blogger.