Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > PHP > PHP Forum > แค่จะสร้างตาราง+ใส่ข้อมูลเข้าไปในตารางแค่เนี่ย ทำไมถึงไม่ได้???? (ง่าย ๆ สำหรับมือโปรครับ)



 

แค่จะสร้างตาราง+ใส่ข้อมูลเข้าไปในตารางแค่เนี่ย ทำไมถึงไม่ได้???? (ง่าย ๆ สำหรับมือโปรครับ)

 



Topic : 079821



โพสกระทู้ ( 111 )
บทความ ( 0 )



สถานะออฟไลน์




สืบเนืองจากผมเป็นมือใหม่มากตั้งแต่ปีที่แล้ว และยังใหม่อยู่ในปีนี้ (เนื่องจากภาระการทำงานไม่เกี่ยวข้องกับการเขียนโปรแกรมและไม่มีเวลา/โอกาสได้ศึกษาเพิ่มเติมมากนัก) ผมเพียงจะเพิ่มตารางในดาต้าเบส แต่ไหงทำไม่ได้ไม่รู้ครับ ผมมีตัวอย่างดังนี้

Code
CREATE TABLE tbFac (
Fac_ID char(1) NOT NULL auto_increment,
Register_ID nchar(10) NOT NULL,
Fac_Name varchar(50) NOT NULL,
Branch 1 varchar(50) NOT NULL,
Branch 2 varchar(50) NOT NULL,
Branch 3 varchar(50) NOT NULL,
Branch 4 varchar(50) NOT NULL,
Branch 5 varchar(50) NOT NULL,
Branch 6 varchar(50) NOT NULL,
Branch 7 varchar(50) NOT NULL,
Branch 8 varchar(50) NOT NULL,
Status char(1) NOT NULL,
Note varchar(50) NOT NULL,
PRIMARY KEY (Fac_ID)
);
INSERT INTO tbFac VALUES ( '1', '5501990000', 'xxxxxxxx', 'xxxxx/1', 'xxxxx/2', 'xxxxx/3', 'xxxxx/4', 'xxxxx/5', 'xxxxx/6', 'xxxxx/7', 'xxxxx/8', '0', 'xxxxx');
INSERT INTO tbFac VALUES ( '2', '5501990001', 'xxxxxxxx', 'xxxxx/1', 'xxxxx/2', 'xxxxx/3', 'xxxxx/4', 'xxxxx/5', 'xxxxx/6', 'xxxxx/7', 'xxxxx/8', '0', 'xxxxx');
INSERT INTO tbFac VALUES ( '3', '5501990002, 'xxxxxxxx', 'xxxxx/1', 'xxxxx/2', 'xxxxx/3', 'xxxxx/4', 'xxxxx/5', 'xxxxx/6', 'xxxxx/7', 'xxxxx/8', '0', 'xxxxx');
INSERT INTO tbFac VALUES ( '4', '5501990003', 'xxxxxxxx', 'xxxxx/1', 'xxxxx/2', 'xxxxx/3', 'xxxxx/4', 'xxxxx/5', 'xxxxx/6', 'xxxxx/7', 'xxxxx/8', '0', 'xxxxx');
INSERT INTO tbFac VALUES ( '5', '5501990004', 'xxxxxxxx', 'xxxxx/1', 'xxxxx/2', 'xxxxx/3', 'xxxxx/4', 'xxxxx/5', 'xxxxx/6', 'xxxxx/7', 'xxxxx/8', '0', 'xxxxx');


และผลจากการกดปุ่ม "ลงมือ" จะออกมาเป็นแบบนี้ครับ

ผิดพลาด คำค้น SQL:
CREATE TABLE tbFac(
Fac_ID int( 11 ) NOT NULL AUTO_INCREMENT ,
Register_IDchar( 10 ) NOT NULL ,
Fac_Name varchar( 50 ) NOT NULL ,
Branch1varchar( 50 ) NOT NULL ,
Branch2varchar( 50 ) NOT NULL ,
Branch3varchar( 50 ) NOT NULL ,
Branch4varchar( 50 ) NOT NULL ,
Branch5varchar( 50 ) NOT NULL ,
Branch6varchar( 50 ) NOT NULL ,
Branch7varchar( 50 ) NOT NULL ,
Branch8varchar( 50 ) NOT NULL ,
STATUS char( 1 ) NOT NULL ,
Note varchar( 50 ) NOT NULL ,
PRIMARY KEY ( Fac_ID )
);


Code
MySQL แสดง: เอกสารอ้างอิง
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '1 varchar(50) NOT NULL,
Branch 2 varchar(50) NOT NULL,
Branch 3 varchar(50) NO' at line 5


มันบอกว่าให้ตรวจสอบสัญลักษณ์เนื่องจากมีสัญลักษณ์ผิดพลาด ผมว่าผมไล่หมดแล้วนา (เนื่องจากมือใหม่คิดไปเองว่าตรวจสอบหมดแล้ว) อย่างไรผมรบกวนมืออาชีพแนะนำด้วยครับ



Tag : PHP, MySQL









ประวัติการแก้ไข
2012-06-15 10:23:47
Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2012-06-15 10:22:33 By : narak0001 View : 1048 Reply : 4
 

 

No. 1



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

ผิดหลายจุดครับ จุดแรกก็ AUTO_INCREMENT จะต้องเป็น int น่ะครับ ผมแก้ไขให้แล้วครับ

Code
CREATE TABLE tbFac (
Fac_ID int(11) NOT NULL auto_increment,
Register_ID nchar(10) NOT NULL,
Fac_Name varchar(50) NOT NULL,
Branch1 varchar(50) NOT NULL,
Branch2 varchar(50) NOT NULL,
Branch3 varchar(50) NOT NULL,
Branch4 varchar(50) NOT NULL,
Branch5 varchar(50) NOT NULL,
Branch6 varchar(50) NOT NULL,
Branch7 varchar(50) NOT NULL,
Branch8 varchar(50) NOT NULL,
Status char(1) NOT NULL,
Note varchar(50) NOT NULL,
PRIMARY KEY (Fac_ID)
);
INSERT INTO tbFac VALUES ( '1', '5501990000', 'xxxxxxxx', 'xxxxx/1', 'xxxxx/2', 'xxxxx/3', 'xxxxx/4', 'xxxxx/5', 'xxxxx/6', 'xxxxx/7', 'xxxxx/8', '0', 'xxxxx');
INSERT INTO tbFac VALUES ( '2', '5501990001', 'xxxxxxxx', 'xxxxx/1', 'xxxxx/2', 'xxxxx/3', 'xxxxx/4', 'xxxxx/5', 'xxxxx/6', 'xxxxx/7', 'xxxxx/8', '0', 'xxxxx');
INSERT INTO tbFac VALUES ( '3', '5501990002', 'xxxxxxxx', 'xxxxx/1', 'xxxxx/2', 'xxxxx/3', 'xxxxx/4', 'xxxxx/5', 'xxxxx/6', 'xxxxx/7', 'xxxxx/8', '0', 'xxxxx');
INSERT INTO tbFac VALUES ( '4', '5501990003', 'xxxxxxxx', 'xxxxx/1', 'xxxxx/2', 'xxxxx/3', 'xxxxx/4', 'xxxxx/5', 'xxxxx/6', 'xxxxx/7', 'xxxxx/8', '0', 'xxxxx');
INSERT INTO tbFac VALUES ( '5', '5501990004', 'xxxxxxxx', 'xxxxx/1', 'xxxxx/2', 'xxxxx/3', 'xxxxx/4', 'xxxxx/5', 'xxxxx/6', 'xxxxx/7', 'xxxxx/8', '0', 'xxxxx');







แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-06-15 10:51:14 By : mr.win
 


 

No. 2



โพสกระทู้ ( 111 )
บทความ ( 0 )



สถานะออฟไลน์


โอ้ ขอบพระคุณมากครับ

ว่าแต่ว่ามีจุดใดบ้างครับ ต่อไปผมจะได้ระัวังในการเขียนครับ
1. จุดที่เป็น auto_increment หากผมไม่กำหนดให้เป็น auto_increment ผมสามารถกำหนดชนิดข้อมูลเป็น char ได้ไหมครับ (แล้วจะเออเรอร์ไหม)
2. ส่วนใดของสัญลักษณ์ที่ระบบมันบอกว่าผิดครับ ผมจะได้ระวังและเก็บเป็นประสบการณ์ต่อไป (เพิ่งเริ่มศึกษาต้องการประสบการณ์อย่างมากเลยครับ)
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-06-15 10:57:04 By : narak0001
 

 

No. 3



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

Code
CREATE TABLE tbFac (
Fac_ID char(1) NOT NULL auto_increment,
Register_ID nchar(10) NOT NULL,
Fac_Name varchar(50) NOT NULL,
Branch 1 varchar(50) NOT NULL,
Branch 2 varchar(50) NOT NULL,
Branch 3 varchar(50) NOT NULL,
Branch 4 varchar(50) NOT NULL,
Branch 5 varchar(50) NOT NULL,
Branch 6 varchar(50) NOT NULL,
Branch 7 varchar(50) NOT NULL,
Branch 8 varchar(50) NOT NULL,
Status char(1) NOT NULL,
Note varchar(50) NOT NULL,
PRIMARY KEY (Fac_ID)
);
INSERT INTO tbFac VALUES ( '1', '5501990000', 'xxxxxxxx', 'xxxxx/1', 'xxxxx/2', 'xxxxx/3', 'xxxxx/4', 'xxxxx/5', 'xxxxx/6', 'xxxxx/7', 'xxxxx/8', '0', 'xxxxx');
INSERT INTO tbFac VALUES ( '2', '5501990001', 'xxxxxxxx', 'xxxxx/1', 'xxxxx/2', 'xxxxx/3', 'xxxxx/4', 'xxxxx/5', 'xxxxx/6', 'xxxxx/7', 'xxxxx/8', '0', 'xxxxx');
INSERT INTO tbFac VALUES ( '3', '5501990002, 'xxxxxxxx', 'xxxxx/1', 'xxxxx/2', 'xxxxx/3', 'xxxxx/4', 'xxxxx/5', 'xxxxx/6', 'xxxxx/7', 'xxxxx/8', '0', 'xxxxx');
INSERT INTO tbFac VALUES ( '4', '5501990003', 'xxxxxxxx', 'xxxxx/1', 'xxxxx/2', 'xxxxx/3', 'xxxxx/4', 'xxxxx/5', 'xxxxx/6', 'xxxxx/7', 'xxxxx/8', '0', 'xxxxx');
INSERT INTO tbFac VALUES ( '5', '5501990004', 'xxxxxxxx', 'xxxxx/1', 'xxxxx/2', 'xxxxx/3', 'xxxxx/4', 'xxxxx/5', 'xxxxx/6', 'xxxxx/7', 'xxxxx/8', '0', 'xxxxx');

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-06-15 11:11:39 By : mr.win
 


 

No. 4



โพสกระทู้ ( 111 )
บทความ ( 0 )



สถานะออฟไลน์


ขอบพระคุณครับ ข้อผิดพลาด 2 ส่วนแรก คือความไม่เข้าใจระบบ ส่วนข้อผิดพลาดที่ 3 คือความบกพร่องในการเขียนโค๊ด ขอบคุณมากครบ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-06-15 11:13:24 By : narak0001
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : แค่จะสร้างตาราง+ใส่ข้อมูลเข้าไปในตารางแค่เนี่ย ทำไมถึงไม่ได้???? (ง่าย ๆ สำหรับมือโปรครับ)
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 00
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่