SlideShare a Scribd company logo
1 of 1
1. CREATE 
CREATE TABLE `db_datamhs`.`tb_mahasiswa` ( 
`nim` CHAR( 12 ) NOT NULL , 
`nama` VARCHAR( 30 ) NOT NULL , 
`alamat` VARCHAR( 100 ) NOT NULL , 
`tempat_lahir` VARCHAR( 30 ) NOT NULL , 
`tanggal_lahir` DATE NOT NULL , 
`jenis_kelamin` ENUM( 'L', 'P' ) NOT NULL , 
`photo` VARCHAR( 100 ) NOT NULL , 
PRIMARY KEY ( `nim` ) 
) ENGINE = MYISAM ; 
2. ALTER 
Misal saya mau nambah kolom NIP pada table user, setelah login ke mysql prompt : 
ALTER TABLE user ADD NIP VARCHAR(60); 
Command tersebut akan menambah kolom NIP pada akhir table user, jika kita ingin menambah 
kolom NIP setelah kolom tertentu, misalnya kolom nama, maka cmdnya 
ALTER TABLE user ADD NIP VARCHAR(60) AFTER nama; 
Jika ingin diletakkan pada kolom pertama, maka cmd nya : 
ALTER TABLE user ADD NIP VARCHAR(60) FIRST; 
3. INSERT 
INSERT INTO `db_datamhs`.`tb_pengguna` 
(`username`,`password`,`nama`,`login_terakhir`) 
VALUES ('admin', MD5( '12345' ) , 'Nama Admin', '2012-08-08 23:49:35');

More Related Content

Featured

Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them wellGood Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Saba Software
 
Introduction to C Programming Language
Introduction to C Programming LanguageIntroduction to C Programming Language
Introduction to C Programming Language
Simplilearn
 

Featured (20)

How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 
ChatGPT webinar slides
ChatGPT webinar slidesChatGPT webinar slides
ChatGPT webinar slides
 
More than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike RoutesMore than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike Routes
 
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
 
Barbie - Brand Strategy Presentation
Barbie - Brand Strategy PresentationBarbie - Brand Strategy Presentation
Barbie - Brand Strategy Presentation
 
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them wellGood Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
 
Introduction to C Programming Language
Introduction to C Programming LanguageIntroduction to C Programming Language
Introduction to C Programming Language
 

Query MySQL

  • 1. 1. CREATE CREATE TABLE `db_datamhs`.`tb_mahasiswa` ( `nim` CHAR( 12 ) NOT NULL , `nama` VARCHAR( 30 ) NOT NULL , `alamat` VARCHAR( 100 ) NOT NULL , `tempat_lahir` VARCHAR( 30 ) NOT NULL , `tanggal_lahir` DATE NOT NULL , `jenis_kelamin` ENUM( 'L', 'P' ) NOT NULL , `photo` VARCHAR( 100 ) NOT NULL , PRIMARY KEY ( `nim` ) ) ENGINE = MYISAM ; 2. ALTER Misal saya mau nambah kolom NIP pada table user, setelah login ke mysql prompt : ALTER TABLE user ADD NIP VARCHAR(60); Command tersebut akan menambah kolom NIP pada akhir table user, jika kita ingin menambah kolom NIP setelah kolom tertentu, misalnya kolom nama, maka cmdnya ALTER TABLE user ADD NIP VARCHAR(60) AFTER nama; Jika ingin diletakkan pada kolom pertama, maka cmd nya : ALTER TABLE user ADD NIP VARCHAR(60) FIRST; 3. INSERT INSERT INTO `db_datamhs`.`tb_pengguna` (`username`,`password`,`nama`,`login_terakhir`) VALUES ('admin', MD5( '12345' ) , 'Nama Admin', '2012-08-08 23:49:35');